Search Results
pawn Code: public ShowPlayerLevels(playerid, kamid){   new lvl[256], name[24], apie[50];   GetPlayerName(playerid, name, 24);   format(apie, sizeof(apie), "Informacija apie %s", name);   new ...
242
Quote: data/playerDB.txt(4) : warning 201: redefinition of constant/macro (symbol "TAXI") data/functions.txt(14 -- 15) : error 001: expected token: ",", but found "-identifier-" data/funct...
242
Quote: data/playerDB.txt(4) : warning 201: redefinition of constant/macro (symbol "TAXI") data/functions.txt(14 -- 17) : error 001: expected token: ",", but found "-identifier-" data/funct...
242
How to reduce lenght of this line: Code: format(lvl, sizeof(lvl), "Stiprumo lygis: %i (%i/%i)\nVikrumo lygis: %i (%i/%i)\nProtingumo lygis: %i (%i/%i)\n\nTeisėsaugos lygis: %i (%i/%i)\nPirmos pa...
242
Код: if(playerDB[playerid][Strlvl]==0) { str = 700; } else if(playerDB[playerid][Strlvl]==1) { str = 910; } else if(playerDB[playerid][Strlvl]==2) { str =...
113
What symbol I have to use, to make that bright background of speedometer? Or maybe texture? Color doesn't have to be bright. Thanks!
58
Oh, so as everyone says "Will be easier to read" means, that it will be easier to read for programmer? Not for server?
188
Space after if: pawn Код: if (VariableSet) It's some part of indentation? Will it cause less lag?
188
But doesn't return 1; stops checking other variables?
188
Variant 1 Код: if(VariableSet) { print("OK"); return 1; } if(!VariableSet) { print("Not OK"); return 1; } Variant 2 Код: if(VariableSet) { print("OK"); return 1; } else if(!V...
188
Код: public SlagDown(objectid) { if(objectid == VIPSlag[1]) { RotateObject(VIPSlag[1],0, 90, 0, 3); return 1; } if(objectid == VIPSlag[0]) { RotateObject(VIPSlag[0], 358...
270
Oh... I see... !=3 is needed with integers... Well I'm making "Buddy" chat, so I need to check "Buddy" IDs... Thanks! Respect!
160
Код: if(!playerDB[playerid][BID]==3) Sends "Tag mismach" warning...
160
Код: dini_IntSet(BaznAukos, name, dini_Int(Bazn, name) ++ strval(inputtext)); Errors: Код: C:\Documents and Settings\Lukas\Desktop\GRP4\GRP4\gamemodes\new.pwn(5199) : error 022: must be lvalue...
79
Is there something like pray animation? Or maybe it's possible to stop animation while it playing ant keep in that position? Thanks!
55
Hey! Code: public OnPlayerStreamIn(playerid) { SendCommand("/strip"); return 1; } This code, in NPC.pwn file should make NPC to dance, but it's not dancing... Command: Code: CMD:s...
121
Hello. First problem: Code: CMD:get(playerid, params[]) { if(sscanf(params, "u", player)) { ShadInfoBoxForPlayer(playerid, "/get [who?]"); return 1; } if(IsPlayerConnected(pl...
106
Код: if(dialogid == 65) { if(response) { if(!IsNumeric(inputtext)) { ShowPlayerDialog(playerid, 64, DIALOG_STYLE_INPUT, "Loan", "{FF0000}Write number!", "Ok", ""); return 1; }...
76
Doesn't work Im making new system, that if you crash with a car you will teleport one point forward...
124