• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua Use item and get full outfit

mattehj

Member
Joined
Oct 8, 2009
Messages
85
Reaction score
16
For example, I use item 40869, And i get Full racoon outfit (1372 for female and 1371 for male)
and if I alrdy have it, it say that I alrdy have the outfit
 
In actions.xml
XML:
    <action itemid="40869" script="XXX/raccoon.lua"/>

The script - make sure to put same path as in actions.xml - Replace XXXXX with valid storage.

Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
        if(getPlayerStorageValue(cid,XXXXX) < 1) then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You unlocked Raccoon outfit!.")
        setPlayerStorageValue(cid, XXXXX, 1)
        doSendMagicEffect(getCreaturePosition(cid), 40)
        doPlayerAddOutfit(cid, 1371, addons)
        doPlayerAddOutfit(cid, 1372, addons)
        elseif (getPlayerStorageValue(cid,XXXXX) == 1) then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You already have access to this outfit!")
end    
end
 
In actions.xml
XML:
    <action itemid="40869" script="XXX/raccoon.lua"/>

The script - make sure to put same path as in actions.xml - Replace XXXXX with valid storage.

Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
        if(getPlayerStorageValue(cid,XXXXX) < 1) then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You unlocked Raccoon outfit!.")
        setPlayerStorageValue(cid, XXXXX, 1)
        doSendMagicEffect(getCreaturePosition(cid), 40)
        doPlayerAddOutfit(cid, 1371, addons)
        doPlayerAddOutfit(cid, 1372, addons)
        elseif (getPlayerStorageValue(cid,XXXXX) == 1) then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You already have access to this outfit!")
end   
end
I dont have Actions.xml
 
Back
Top