Morcega Negra
Banned User
- Joined
- Aug 4, 2015
- Messages
- 102
- Solutions
- 1
- Reaction score
- 8
This code works, the only problem is that female chars resets for male outfit
help?
help?
Code:
local npos = {x=32360, y=31784, z=8} --- posição para onde sera teleportado
function onStepIn(cid, item, position, fromPosition, toPosition)
if not isPremium(cid) then
doTeleportThing(cid, npos)
doSendMagicEffect(npos,10)
outfit = {lookType = 128, lookHead = 78, lookAddons = 0, lookLegs = 39, lookBody = 68, lookFeet = 76}
doCreatureChangeOutfit(cid, outfit)
else
end
return true
end