Search Results
If you would have used proper indentation (as the first warning already suggests to you) you would see the mistake right away.
101
Looks like your includes are outdated (these function were included in 0.3x) so your server is older than that. Update to 0.3z or 0.3.7 (beta)
144
There are many different file-writing systems (sa:mp's default, y_ini, dini, et cetra). Look up more information and tutorials to learn how to save and load info in/from a file.
136
CalvinC already gave you the answer, just read the error and read your code again and again until you have found the problem.
128
That log gives you the cause of the problem 340 times... how could you not see that?
85
You forget to actually get the time... pawn Код: gettime(Hours, Minutes, Seconds);
172
@Jimmy: - His code has proper indentation - The 'random words' like "goto" and "do" are valid functions. https://sampwiki.blast.hk/wiki/Control_Structures#do-while @Xysiaris: You forgot to add the ...
234
You'll figure it out: pawn Код: new LastSkin[MAX_PLAYERS]; pawn Код: LastSkin[playerid] = GetPlayerSkin(playerid); pawn Код: SetPlayerSkin(playerid, LastSkin[playerid]);
182
Here you go: http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm
110
How could you not be able to figure it out while ****** comes up with 21900 search-results?
195
The limit-size of a clientmessage is 128 characters. All the colors, playername and id already take up 100 characters, so there are only 28 characters left for the actual text... Just remove all the c...
165
//Top of script: pawn Код: new CurrentMessage; pawn Код: public RandomMsg(){    switch(CurrentMessage)    {        case 0: { SendClientMessageToAll(COLOR_SERVERMSG, "message 1"); Curr...
127
You never actually retrieve the skin-data from the file. //Before using SetPlayerSkin add: pawn Код: PlayerInfo[playerid][pSkin] = dini_Int(file, "Skin");
106
I'm not sure if it's the most efficient way, but try this: (Credits to Slice for the ShuffleArray-function). //Top of script: pawn Код: new Plates[25];new PlateOrder[25];new PlateCount;new Time...
217
If you want to pass a value to a function (in this case the playerid) you have to use SetTimerEx pawn Код: SetTimerEx("TerminoCargarObjetos", 3500, false, "u", playerid);
166
Quote: Originally Posted by _GHT_MarK445 iMFear: %i is the same thing as %d. Right for output, wrong for input.
200
Why? Everybody has freedom of speech so everyone can express their opinions, although I agree flaming like $$inSane does is not necessary. Dominik523 has a good point and the others asking you what ...
609
@Aerotactics: He already solved it. (Read the last line...)
120
%09d Will give a number with 9 digits. for example: pawn Код: new number = 312; new str[24];format(str, sizeof(str), "Number: %08d", number);print(str); ..will print: "Number: 00000312" The ...
99
pawn Код: new LastCommand[MAX_PLAYERS];public OnPlayerCommandText(playerid, cmdtext[]){    if((GetTickCount() - LastCommand[playerid]) < 334) Kick(playerid);    else LastCommand[playerid] =...
178