Search Results
pawn Код: if (length == 3 || length == 4) // ??????? "CLOCK$" 6 characters!
591
To be used when you need extra arguments to callback. Example.: pawn Код: mysql_function_query(Connect, Stra, true, "CheckVip", "iis", playerid, 123, Stra);public CheckVip(playerid, integer, stri...
94
Delete this line: Quote: new Stra[94 + 1], Nome[21]; // +1 null character ('\0') GetPlayerName(playerid,Nome,21); format(Stra, 94 + 1, "SELECT `Nome`, `Quantidade`, `Tempo...
94
pawn Код: public     OnPlayerCommandText(playerid, cmdtext[]){    if(strcmp("/teleports", cmdtext) == 0)    {        ShowPlayerDialog(playerid,1,DIALOG_STYLE_LIST,"{9D0000}Te{FFFFFF}le{9...
191
Try: npp_save http://forum.sa-mp.com/showpost.php?...7&postcount=24
42
Quote: Originally Posted by d0nTtoucH new download link ? Added, and update script.
294
Quote: Originally Posted by GreTex only happens to NRG and FCR? NOt Others? Well, to write the rest.
167
Try: pawn Код: public    OnPlayerStateChange(playerid, newstate, oldstate){    if(newstate == PLAYER_STATE_DRIVER)    {               switch(GetVehicleModel(GetPlayerVehicleID(playeri...
167
Quote: Originally Posted by Stefand Still getting crashes... Sorry. Crash invalid row ID call cache_get_row_int and cache_get_row and cache_get_row_float. Try: pawn Код: stock Init...
129
Do not call for loop mysql_function_query! Try: pawn Код: stock InitFactions(){    mysql_function_query(connectionHandle, "SELECT * FROM `Factions`", true, "LoadFactionsCallback", "d", id); // ...
129
@[HLF]Southclaw This makes it easier: pawn Код: stock     Float:absoluteangle2(Float:angle){    while(angle < 0.0) angle += 360.0    while(angle > 360.0) angle -= 360.0;    return an...
70,452
Two sets of variables: pawn Code: test[playerid]tikrinu[playerid]
96
What is the "Path"? pawn Код: new Path[MAX_PLAYERS][100]; // ?// Try:if(fexist(Path[i]){
97
strtok original code new result[20]; <-- 20 cell new tmp[128], tmp2[128], <-- 128 cell array size do not match tmp(128 cell) not equal result (20 cell) Use strrest in gl_common.inc. pa...
173
Quote: Originally Posted by PANTHERX Link does not work (SA-MP 0.3d R-2 version) I tested and it works. Please try again.
1,113
pawn Код: stock    rgbatoabgr(color){    new        abgr[1],        rgba[1];    rgba[0] = color;    abgr{3} = rgba{0};    abgr{2} = rgba{1};    abgr{1} = rgba{2};    abgr{0} ...
70,452
Thanks. Script Download: (SA-MP 0.3e RC5 version) (Update 2012.04.01) http://pastebin.com/AXZDMqG7 Quote: - 2012.04.01 - New code, ranking five card hand - Add WAIT...
1,113
0.3e RC5 version Use new native function PlayerText:CreatePlayerTextDraw(playerid, etc.. http://pastebin.com/DnUj4z52
1,113