Lineage 2 Tower Forum

Full Version: Problem CP POTS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well I dunno why I couldn't write my message, any way my problem isn't that simple..

WEll in my server the gm shop sells greater cp potions that are different from the normal greater cp poitions because they have an higher delay. When I craft 20 CP pots by noblesse, the bot use them, but when I buy the gm shop ones the bot ignores them.

Help me, thanks
(07-30-2012 08:01 AM)kittin Wrote: [ -> ]Well I dunno why I couldn't write my message, any way my problem isn't that simple..

WEll in my server the gm shop sells greater cp potions that are different from the normal greater cp poitions because they have an higher delay. When I craft 20 CP pots by noblesse, the bot use them, but when I buy the gm shop ones the bot ignores them.

Help me, thanks

use this script to check item ID
    LUA Programming
ItemName = "" --write into "" the EXACTLY name of the item in your inv
local invlist = GetInventory();
for item in invlist.list do
if item.Name == ItemName  then
ShowToClient("ID Detector","Item Name: " .. ItemName .. " has been detected in your inventory and it has Id of:" .. tostring(item.displayId));
Sleep(5000);
end;
end;




Or more easly:
- write /recstart_cp

- click on one potion in your skill bar

- write /recstop

.....go to folder /script open file "cp" and copy the ID of the item..

then use some script (there should be more on forum, use search) like:

CP = 70%

if my cp is < CP then
Use(item id you have found)
end;
Reference URL's