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

Help Please

mxmagrilo

New Member
Joined
Jun 26, 2010
Messages
8
Reaction score
0
I need a script to do the following
I have a server with war
Teams of red, black and white but I wanted to balance them
with a limit of people on each team
example
so you can get 10 people for each team
is to do this for me?
I'll post the script for the team black
function onStepIn(cid, item, frompos, item2, topos)

local outfit = {lookType = 335, lookHead = 114, lookBody = 114, lookLegs = 114, lookFeet = 114, lookAddons = 3}

if item.actionid == 5033 and isPlayer(cid) then
doCreatureChangeOutfit(cid, outfit)
end
return true
end
 
Back
Top