SA-MP Forums Archive
/join command - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: /join command (/showthread.php?tid=323442)



/join command - STONEGOLD - 05.03.2012

i want player type /join command all tp to me like i make hide n seek event and i said anyone want join event type /join or /yes

help me


Re: /join command - Max_Coldheart - 05.03.2012

Learn to script instead of asking every question here, and also post in right section.


Re: /join command - Fantastic - 05.03.2012

And please stop PM'ing me about your problems and questions,Because i will not answer them!

And god knows what you wrote there,Dont understand a word you are saying.


Re: /join command - Konstantinos - 05.03.2012

Quote:
Originally Posted by STONEGOLD
Посмотреть сообщение
i want player type /join command all tp to me like i make hide n seek event [..]
Quote:
Originally Posted by STONEGOLD
Посмотреть сообщение
[..] i said anyone want join event type /join or /yes
Which of them. What exactly join command want to do, to teleport all to you, all request players and on /yes teleport them on you?
Here is the first case. All to you.
pawn Код:
CMD:join( playerid, params[ ] )
{
    if( !IsPlayerAdmin( playerid ) ) return SendClientMessage( playerid, -1, "You aren't Rcon Admin!" );
    new Float:XPos, Float:YPos, Float:ZPos;
    GetPlayerPos( playerid, XPos, YPos, ZPos );
    for( new i = 0; i < MAX_PLAYERS; i ++ )
    {
        SetPlayerPos( i, XPos, YPos, ZPos );
        SendClientMessage( i, -1, "The {FF0000}Hide n' Seek {FFFFFF}Event has started!" );
    }
    return 1;
}



Re: /join command - STONEGOLD - 05.03.2012

ty +rep


Re: /join command - Scones - 05.03.2012

lol, you do know that it wont really help if you rep anyone?


Re: /join command - AngryUnibrow - 06.03.2012

Perfect example of how Rep is used the wrong way.