Search Results
EDIT: Nevermind, person above was faster.
91
https://sampforum.blast.hk/showthread.php?tid=65567
1,526
pawn Код: if(PlayerInfo[playerid][pGang] == 1)    {        SetPlayerColor(playerid,COLOR_RED);    }    else if(PlayerInfo[playerid][pGang] == 2)    {        SetPlayerColor(playerid...
108
Quote: Originally Posted by FirziKs Download 0.3d server, add includes in includes map, and then try to compile Quote: Originally Posted by expertprogrammer Sir, update your...
159
Well, where did you added this code?
159
Quote: Originally Posted by park4bmx is iis becouse your want 1-5 , price ,name so that means that Category 1-5 is a variable so its an I If it's a variable it doesn't mean it should st...
170
pawn Код: GivePlayerMoney( giveplayerid, -cashamount );
83
Using zcmd: pawn Код: CMD:ooc( playerid, params[] ){    if ( isnull ( params ) ) return SendClientMessage( playerid, -1, "Syntax /ooc [text]" );    /* check if command parameters are null */Â...
156
Perhaps somewhere after your includes?
134
Missing bracket maybe? pawn Код: else if ( PRESSED(KEY_FIRE) )    {        if(IsACop(playerid) && GetPlayerWeapon(playerid) == 23 && Tazer[playerid] == 1)        {    ...
148
Add some print lines through your code and see in the server console or log where it stops.
148
No, you just can simply do: pawn Код: if (!Computer{playerid} ) return SendClientMessage(playerid, -1, "You dont got a computer");else{    SendClientMessage( playerid, -1, "You HAVE got a compu...
112
Quote: Originally Posted by cruteX_modshop And then code under that, should be what will happen if he DO got a computer? Operator '!' means not. pawn Код: if ( Computer{playerid}...
112
Missing bracket: pawn Код: COMMAND:announce(playerid, params[]){    if(!IsPlayerAdmin(playerid))    {        new text[64], time, style;        if (sscanf(params, "iis[64]", style, tim...
157
pawn Код: new    HealUsed[ MAX_PLAYERS ];forward @RefreshCmd( playerid );@RefreshCmd( playerid ){    HealUsed[ playerid ] = 0;    SendClientMessage( playerid, -1, #two minutes passed you can...
82
Quote: Originally Posted by SantarioLeone All i can really say is when you do a tutorial about saving a players position its important that you include virtual world, and interior support....
3,818
@demonarn You have an extra bracket. pawn Code: public OnPlayerSpawn(playerid){    new Random = random( sizeof ( RandomSpawns ) );    SetPlayerPos(playerid, RandomSpawns[ Random ][ 0 ], Random...
24,482
https://sampwiki.blast.hk/wiki/Hex_colours https://sampwiki.blast.hk/wiki/Colour_Embedding
92
See https://sampwiki.blast.hk/wiki/GetPlayerKeys for supported keys.
91
Example for blocking model id 450: pawn Код: CMD:v(playerid, params[]){    if(DeathMatch[playerid] != 0) return SendClientMessage(playerid, COLOR_RED, "You can not TP from DM. Use /exitdm to le...
71