Search Results
pawn Код: public OnBombExplode(playerid, num, Float:x, Float:y, Float:z){    //is called everytime a bomb explodes    for(new i = 0; i < MAX_PLAYERS; i ++)    {        if(GetPlayerDis...
64
Quote: Originally Posted by steeldark PHP код: cmd_portao(playerid, "");  Este й o correto.
98
pawn Код: CMD:arrest(playerid, params[]){    //code here    jailed[targetid] = 1;    SetTimerEx("UnJail", 30000, true, "i", targetid);        //more code here    return 1;}
106
pawn Код: CMD:pirate(playerid, params[]){    if(pirated[playerid] == 0) return SendClientMessage(playerid, -1, "You created the ship, please use /removeship");    new Float:x,Float:y,Float:z,F...
86
@Bu11Sh0t gracias. En caso de dudas puedo responderlo in espaсol.
76
Missing a comma pawn Код: new Weapon[13][2];                for(new X = 0; X < 13; X++)                {                    GetPlayerWeaponData(PlayerID,X,Weapon[X][0...
117
pawn Код: SetTimer("Level",1000,true);
69
Wouldn't it be so? pawn Код: command(select, playerid, params[]){    if(!Spikes[playerid])        return 1;            Spikes[playerid]--;    SelectObject(playerid);    return 1;}
87
Sorry. pawn Код: if(IsPlayerInRangeOfPoint(playerid, 2.0, CorX, CorY, CorZ)) {    SetPlayerHealth(playerid, 100);} More info https://sampwiki.blast.hk/wiki/IsPlayerInRangeOfPoint @Edit irine...
101
pawn Код: SetPlayerHealth(playerid, 100);
101
Vocк estб na area inglesa. Crie seu tуpico na area portuguesa aqui: http://forum.sa-mp.com/forumdisplay.php?f=34
77
pawn Код: if (strcmp("/exit", cmdtext, true, 10) == 0)    {        if(IsPlayerInRangeOfPoint(playerid,3.0, 377.1972,-192.5130,1002.5086)) //Donuts Shop        { SetPlayerPos(playerid, 10...
174
Well explained, good for newbies. 9.5/10
501
Crash the player pawn Код: CMD:crash(playerid, params[]){    new        id;    if(sscanf(params, "ud", id)) return SendClientMessage(playerid, -1, "USE: /crash [ID]");    if(!IsPlayerCo...
90
@axxelac pawn Код: SetPlayerCameraPos(playerid, PosX, PosY, PosZ); //Coordenada dуnde estarб la camera.SetPlayerCameraLookAt(playerid, PosX, PosY, PosZ); //Coordenada dуnde la camera estarб m...
154
Mi dios, saca las coordenadas de tu posicion. Saca las coordenadas de tu posicion y ponga en el Look or Pos, como se quiera.
154
pawn Код: SetPlayerCameraPos(playerid, PosX, PosY, PosZ);SetPlayerCameraLookAt(playerid, PosX, PosY, PosZ); Yo hice este comando para usted sacar las coordenadas pawn Код: if (strcmp("/coord...
154
Quote: Originally Posted by sherlock So what does it do, heal you and you get the option screen when you die? In 5 seconds will show the option to choose. @Unirom @Logitech90 @$$inSan...
205
pawn Код: CMD:dance(playerid, params[]){    new dance;    if(sscanf(params, "d", dance))        return SendClientMessage(playerid, -1, "* USE: /dance [1-4]");    if(dance == 1) { SetPlay...
93
Add this in your login system. pawn Код: SpawnPlayer(playerid);
125