SA-MP Forums Archive
[AJUDA]Comando Teleport SendMessagetoAll - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA]Comando Teleport SendMessagetoAll (/showthread.php?tid=261220)



[AJUDA]Comando Teleport SendMessagetoAll - Bleed_Out - 12.06.2011

Opa galera tudo suave? vim pedir a ajuda de vocкs
Meu gm й de drift e fiz os teleports e tals vo postar o code de 1!

Esse teleport te leva a cidade de LS!
Код:
	if(strcmp(cmdtext, "/ls", true) == 0){
		SetPlayerInterior(playerid, 0);
		{if(State!=PLAYER_STATE_DRIVER)
		{SetPlayerPos(playerid,1130.2557,-1456.8792,15.7969);}
		else if(IsPlayerInVehicle(playerid, cartype) == 1)
		{SetVehiclePos(cartype,1130.2557,-1456.8792,15.7969);
		SetVehicleZAngle(cartype,266.6323);}
		else
		{SetPlayerPos(playerid,1130.2557,-1456.8792,15.7969);}
		SendClientMessage(playerid, 0x00C2ECFF,"[EW] Vocк foi para a cidade de Los Santos /ls!");}
		PlayerPlaySound(playerid, 1133, 0.0, 0.0, 10.0);
		return 1;}
Eu queria saber como faz,para por exemplo
Quando o player digitar /ls ai aparecer no chat box assim para todos os player on ou seja
Sendmessagetoall (nгo sei se e assim)
Ai o player digitava /ls
Ai aparecia
[EW] BleedOut , foi para a cidade de Los Santos (/ls)

Teria como alguem me ajudar?modifica r o code pra mim?
Desde de jб agradeзo


Re: [AJUDA]Comando Teleport SendMessagetoAll - Macintosh - 12.06.2011

pawn Код:
if(strcmp(cmdtext, "/ls", true) == 0)
{
 SetPlayerInterior(playerid, 0);
 if(State!=PLAYER_STATE_DRIVER) return SetPlayerPos(playerid,1130.2557,-1456.8792,15.7969);
 else if(IsPlayerInVehicle(playerid, cartype) == 1)
 {
  SetVehiclePos(cartype,1130.2557,-1456.8792,15.7969);
  SetVehicleZAngle(cartype,266.6323);
 }
 else return SetPlayerPos(playerid,1130.2557,-1456.8792,15.7969);
 SendClientMessage(playerid, 0x00C2ECFF,"[EW] Vocк foi para a cidade de Los Santos /ls!");
 new Nome[MAX_PLAYER_NAME];
 GetPlayerName(playerid, Nome, sizeof(Nome));
 format(string, sizeof(string), "[EW] %s foi para /ls", Nome);
 SendClientMessageToAll(0xD5E8A8AA, string);
 PlayerPlaySound(playerid, 1133, 0.0, 0.0, 10.0);
 return 1;
}



Re: [AJUDA]Comando Teleport SendMessagetoAll - JonathanFeitosa - 12.06.2011

Um Modo Mais Fбcil do Garfield

No Final do GM
pawn Код:
stock Anunciar(pid, ms[])// By: iPs_Garfield
{
        new string[128], Nick[24];GetPlayerName(pid, Nick, 24);
    format(string, sizeof(string),"\"%s\"%s",Nick, ms);
    return SendClientMessageToAll(0xFFB0D8AA, string);
}
й Depois sу й usar Nos Comandos
pawn Код:
Anunciar(playerid,"foi para a cidade de Los Santos ( /ls )");
Ai Aparecerб

Nick foi para a cidade de Los Santos (/ls)

Nick = Nome do Cidadгo.


Re: [AJUDA]Comando Teleport SendMessagetoAll - Bleed_Out - 12.06.2011

Haha Muito Obrigado aos dois *-*
Jonathan emo do bcf? '-'


Re: [AJUDA]Comando Teleport SendMessagetoAll - JonathanFeitosa - 12.06.2011

Sim й eu Nгo sou Emo --'


Re: [AJUDA]Comando Teleport SendMessagetoAll - Andrew_Guiga - 12.06.2011

hehe' o Gato gordo fez esse code pra mim (: s2 Gato gorgo /zoua


Re: [AJUDA]Comando Teleport SendMessagetoAll - Bleed_Out - 12.06.2011

Shickcard vlws
To usando o modo que o jonathan mostro, e mais facil ,rapido e funcional *-* que foi o garfield que fez ^^
Vo deixar uma ss *-*



Re: [AJUDA]Comando Teleport SendMessagetoAll - Ricop522 - 12.06.2011

pawn Код:
if(strcmp(cmd, "/teleportar", true) == 0)
    {
        Teleportar(playerid, interiorid, Float:PosX, Float:PosY, Float:PosZ, mensagem[]);
    }
    stock Teleportar(playerid, interiorid, Float:PosX, Float:PosY, Float:PosZ, mensagem[])
    {
        new r_String[0x3C*3], r_Nome[MAX_PLAYER_NAME];
        GetPlayerName(playerid, r_Nome, sizeof(r_Nome));
        format(r_String, sizeof(r_String),"%s %s", r_Nome, mensagem);
        SetPlayerPos(playerid, PosX, PosY, PosZ);
        SetPlayerInterior(playerid, interiorid);
        return SendClientMessageToAll(0xFFB0D8AA, r_String);
    }



Re: [AJUDA]Comando Teleport SendMessagetoAll - Shadoww5 - 12.06.2011

0x3C significa o que, Ricop522 ?


Re: [AJUDA]Comando Teleport SendMessagetoAll - Ricop522 - 12.06.2011

Significa 60*3 = 180