Search Results
I don't care too much about custom skins or objects personally, what I would love to see are custom vehicles, or even just custom handling on stock vehicles.
36,707
In crashinfo.txt? I don't know what is a server segfault. It's on Windows.
353
Mauzen the Wiki say it reads it. LarzI..? By the way it's already included.
175
Hi, I made a file called "pen0_natives.inc" and typed in my script Код: #include "pen0_natives" with some commented natives : http://pastebin.com/bhxW2epu But even after restarting Pawno there i...
175
I already do something like that, I'm asking why it crash pawncc.
69
And what happens if we don't use it ? Like in PEN1 ?
140
Hi, I've this function : Код: _GetWeaponName(weaponid) { if(weaponid > 54) { return "(unused)";//gWeaponName[52] } return gWeaponName[weaponid]; } return "(unused)"; cra...
69
I misasked the question, what the number corresponds to ?
140
Hi, how to use #pragma dynamic in our script if pawncc tell us it need it ? EDIT: I misasked the question, what the number corresponds to ?
140
Hi, in fputs(), what's the difference between io_write and io_append ?
79
No, the problem is here. A print() before the while() works, not after.
113
It will be the same, think, GetMaxPlayers() is not knew at the compilation, only after, it just can't works.
1,321
No it's similar to strtok, I didn't give the whole script.
113
Код: // separate command and params new command[64]; new params[128]; new i = 1, ii = 0; while(cmdText[i] != 0 && cmdText[i] != ' ') { command[ii] = cmdText...
113
Meta: public cmd_kill(playerid, params[]) It doesn't deal with the string, the problem come from CallLocalFunction. ev0lutionnn: Yeah I already use similar ('%'), thanks.
353
No I mean using cmdtext[i] (i = 0..127) will "crash" the function (OnPlayerCommandText()), like if it has a return; in it.
113
Code: new Money[GetMaxPlayers()]; We can't define the numer of array slots with a function (or variable), the code above crashes pawncc. Delete this tutorial ?
1,321
Hi, I can't access to something like cmdtext[0] in OnPlayerCommandText(), I must use another string to read them. Код: new cmdText[128]; format(cmdText, 128, "%s", cmdtext); My question is : Why...
113