Hey all.
I have script:
How i can DoTransformItem to more item ?
This script make one manarune i want more then one.
Sorry for my bad english ..
Yyyy! I need more help.
How i can doremoveitem id 4849 ?
I know only that:
doRemoveItem(item.uid,1)
Then i want remove item id 4849.
This is script:
Thanks.
I have script:
Code:
function onUse(cid, item, frompos, item2, topos)
if item2.itemid == 8299 then
if item.type <= 1 then
doTransformItem(item.uid,2270)
else
doPlayerSendCancel(cid,"Only one by one.")
end
else
return 0
end
return 1
end
How i can DoTransformItem to more item ?
This script make one manarune i want more then one.
Sorry for my bad english ..
Yyyy! I need more help.
How i can doremoveitem id 4849 ?
I know only that:
doRemoveItem(item.uid,1)
Then i want remove item id 4849.
This is script:
Code:
function onUse(cid, item, frompos, item2, topos)
if item2.itemid == 4849 then
if item.type <= 1 then
doTransformItem(item.uid,8294)
else
doPlayerSendCancel(cid,"Only one by one.")
end
else
return 0
end
return 1
end
Thanks.