• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Where is information about "addons" in database?

dawido995

New Member
Joined
Jun 6, 2009
Messages
23
Reaction score
1
I want reset on all characters in database all addons. Where can i found this? I didn't see this anywhere.
 
I think this is it.
database>players>lookbody
database>players>lookfeet
database>players>lookhead
database>players>looklegs
database>players>looktype
database>players>lookaddons
 
I think this is it.
database>players>lookbody
database>players>lookfeet
database>players>lookhead
database>players>looklegs
database>players>looktype
database>players>lookaddons
that's only the current outfit the player has on
it doesn't change anything about the player owning the addons
Code:
for lookType = 100, 400 do
    for addon = 3, 1, -1 do 
        if player:hasOutfit(lookType, addon) then
            player:removeOutfitAddon(lookType, addon)
            break
        end
    end
end
 
Back
Top