local t = {
red = {x = 1077, y = 952, z = 7},
blue = {x = 1035, y = 1023, z = 7},
green = {x = 977, y = 956, z = 6}
}
local outfit = {
re = {lookType = 133, lookHead = 94, lookBody = 94, lookLegs = 94, lookFeet = 94},
blu = {lookType = 133, lookHead = 87, lookBody = 87, lookLegs = 87, lookFeet = 87},
gre = {lookType = 133, lookHead = 81, lookBody = 114, lookLegs = 114, lookFeet = 81}
}
function onLogin(cid)
local R = math.random(1,3)
if R <= 1 then
doTeleportThing(cid, t.red)
doCreatureChangeOutfit(cid, outfit.re)
elseif R <= 2 then
doTeleportThing(cid, t.blue)
doCreatureChangeOutfit(cid, outfit.blu)
elseif R <= 3 then
doTeleportThing(cid, t.green)
doCreatureChangeOutfit(cid, outfit.gre)
end
return true
end