Thread: Teams?
View Single Post
  #2  
Old 03-18-2007, 02:02 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by theHAWKER View Post
In an event i want to sort people into teams, but i don't even know how to start the script x.x this is how far i got:
PHP Code:
if (playerchats){
if (
startswith(#g,Events Team)){
if (strequals(#c,/teams)){
}
}

could somone get me started plz?
Sure.
PHP Code:
function onPlayerChats()
{
  if ( 
player.guild.starts"Events Team" )
  {
     if ( 
player.chat == "/teams" )
     {
        
sortPlayersIntoTeams();
     }
  }

There you go
__________________
Reply With Quote