Search Results
EDIT: Nevermind, person above was faster.
72
https://sampforum.blast.hk/showthread.php?tid=65567
1,158
pawn Код: if(PlayerInfo[playerid][pGang] == 1)    {        SetPlayerColor(playerid,COLOR_RED);    }    else if(PlayerInfo[playerid][pGang] == 2)    {        SetPlayerColor(playerid...
52
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...
62
Well, where did you added this code?
62
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...
88
pawn Код: GivePlayerMoney( giveplayerid, -cashamount );
68
Using zcmd: pawn Код: CMD:ooc( playerid, params[] ){    if ( isnull ( params ) ) return SendClientMessage( playerid, -1, "Syntax /ooc [text]" );    /* check if command parameters are null */Â...
92
Perhaps somewhere after your includes?
77
Missing bracket maybe? pawn Код: else if ( PRESSED(KEY_FIRE) )    {        if(IsACop(playerid) && GetPlayerWeapon(playerid) == 23 && Tazer[playerid] == 1)        {    ...
94
Add some print lines through your code and see in the server console or log where it stops.
94
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...
86
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}...
86
Missing bracket: pawn Код: COMMAND:announce(playerid, params[]){    if(!IsPlayerAdmin(playerid))    {        new text[64], time, style;        if (sscanf(params, "iis[64]", style, tim...
105
pawn Код: new    HealUsed[ MAX_PLAYERS ];forward @RefreshCmd( playerid );@RefreshCmd( playerid ){    HealUsed[ playerid ] = 0;    SendClientMessage( playerid, -1, #two minutes passed you can...
59
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....
2,603
@demonarn You have an extra bracket. pawn Code: public OnPlayerSpawn(playerid){    new Random = random( sizeof ( RandomSpawns ) );    SetPlayerPos(playerid, RandomSpawns[ Random ][ 0 ], Random...
14,983
https://sampwiki.blast.hk/wiki/Hex_colours https://sampwiki.blast.hk/wiki/Colour_Embedding
60
See https://sampwiki.blast.hk/wiki/GetPlayerKeys for supported keys.
61
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...
45