• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Action REMOVE Auto Team System

dustot

New Member
Joined
Jan 13, 2011
Messages
30
Reaction score
0
Location
Atlanta - GA
I downloaded a map that came with this auto team system. Blue and RED.
You can't change your outfit color or choose which side you wanna be on.
I just want it to be Normal..FREE FOR ALL.
So i would like to get rid of it.
Can anyone help me?

Thanks.

Obs: I don't know if this is the right area for the post.
If it isn't plase put it in the right section.
 
Post the scripts of the "Auto Team System"...

I'm segure... it's on movements folder =D
I'll edit for u
 
Auto Team System

Ok, so this is everything i found :

Blue.lua

PHP:
function onStepIn(cid, item, position, fromPosition)
if getPlayerStorageValue(cid, 3001) <= 0 then
doTeleportThing(cid, fromPosition, true)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'Players do time Vermelho nao pode entra na Base Azul.')
doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE)
return TRUE
end
return TRUE
end

Red.lua

PHP:
function onStepIn(cid, item, position, fromPosition)
if getPlayerStorageValue(cid, 3001) <= 0 then
doTeleportThing(cid, fromPosition, true)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'Players do time Azul nao pode entra na Base Vermelho.')
doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE)
return TRUE
end
return TRUE
end


Nothing w/ Blue or Red on movements.xml

Thank you!

- - - Updated - - -

Some guy from Xtibia Helped me.
Thanks
 
Back
Top