Quote:
Originally Posted by theHAWKER
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
