Search Results
http://github.com/ http://gitlab.com/
254
Mova o arquivo pawncc para seus Documentos (para testarmos). Mova sua pasta de includes para seus Documentos. Utilize este script para compilar: Код: { "cmd": ["/home/SEU_USUARIO/Documents/pawncc...
828
Aconselho o uso do atom com o pacote atom-build tanto para linux quanto para windows (especialmente se vocк usa github). Para compilar vocк cria um arquivo chamado atom-build.json na raiz de seu pr...
176
Why not use the ID instead? Code: #define DIALOG_WEAPONS 3 // In some command ShowPlayerDialog(playerid, DIALOG_WEAPONS, DIALOG_STYLE_LIST, "Weapons", "Desert Eagle\nAK-47\nCombat Shotgun", "Select...
260
No, it's only called when the player is streamed in. You have to hide the name tag for all the players when using /mask.
209
https://sampwiki.blast.hk/wiki/OnPlayerText Returning 0 in this callback will stop the text from being sent to all players.
192
Quote: Originally Posted by SilverStand Код: public OnPlayerPickUpDynamicPickup(playerid, pickupid) { for(new i = 1; i <= MAX_REGEN; i++) //... } You are accessing a va...
151
The variables tags are mismatched. https://sampwiki.blast.hk/wiki/Scripting:tags Код: GivePHealth(playerid, Float:health) SetPHealth(playerid, Float:health) Make sure that pInfo[playerid][Health]...
125
Quote: Originally Posted by DerickClark i got this error Код: (150) : error 001: expected token: ";", but found "enum" If you go up one line you'll see whats missing.
171
Pode ser ъtil: https://sampforum.blast.hk/showthread.php?tid=564424
355
Pawn й uma linguagem bem simples e sem tipagem. Se vocк jб sabe C++ nгo terб problemas para criar scripts em pawn. Todas as funзхes que vocк precisa vocк pode encontrar bem documentadas na w...
236
PC-RPG - 0.1a (BUILD 150601) • Cadк o Paradise City?! Apostamos que muitos de vocкs devem estar pensando que o Paradise City RPG foi encerrado. Nгo seria surpresa, considerando o intervalo ...
3,805
Use Код: if(CintoPlayerid[i] == 1) continue; Otherwise it will stop the loop before it checks all the players if CintoPlayerid[i] is true.
305
Your code will take 7 hp from anyone who's in the same vehicle of playerid. And will take 14 hp from playerid. You should use IsPlayerInVehicle. So players that aren't in vehicles won't be affected i...
305
Copy all this files to your include/amx folder. https://github.com/Zeex/amx_assembly
244
Код: new RandomSkins[] = { 211, 177, 3, 18, 280 }; new skinid = RandomSkins[random(sizeof(RandomSkins))];
188
The rest of the code is called properly? Maybe you are being kicked before the dialog can be shown.
296
You can only compare strings with strings. Код: IsMasked(target[]) { new player, MaskName[64]; for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { ...
239
What's the size of the arrays: house_spawn _x, ,house_spawn_y and ,house_spawn_z?
169