• 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!

How i can delete player outfit?

Hmmm... don't know.
But !
You can do creaturescript for onlogin and add there funciton removing addons [doPlayerRemoveOutfit(cid,looktype, addons)] and store it in storage that it was done :)
 
it can be like this :

create new outfit.lua

Code:
function doPlayerRemoveOutfit(cid,looktype, addons)

end

and in creaturescript.xml

Code:
<event type="login" name="outfit" script="outfit.lua"/>

it will be work ?
 
PHP:
DELETE FROM player_storage WHERE key > 1000000

Dont remember exact number, but it was something about 1000000 + outfit# in player_storage for addons.
 

Similar threads

Back
Top