Search Results
You should post the code of the gamemode side as well. Since they produce different results, we need to be able to compare what these scripts are doing.
336
Unfortunately most functions from the standard Pawn libraries (also including user defined functions) and SA:MP natives are not compatible with packed strings.
364
Quote: Originally Posted by Thomas. Howdily doodily fellow SA:MP'er! I am looking for SA:MP enthusiasts willing to help me test a neat project. Please send me a PM with some basic details...
199,719
Howdily doodily fellow SA:MP'er! I am looking for SA:MP enthusiasts willing to help me test a neat project. Please send me a PM with some basic details (your SA:MP experience in general, timezone, an...
199,719
I've written a few quick and dirty regular expressions I used to convert my own scripts. You can use these in practically any editor which supports regular expression replacements (I used Notepad++). ...
95,271
That most likely isn't going to work for him, he utilizes an entirely different user management system.
159
What does your PlayerName2() function look like?
159
Your logic flow is defect: you are trying to alter the password at the very beginning of the logic, before any validation has occured and some of the essential data isn't available yet (not to mention...
159
That is exactly what the warning is telling you. You are assigning a value to those variables with the "Create3DTextLabel" function, but you aren't doing anything with them afterwards. "symbol is ass...
96
Quote: Originally Posted by Johnson_boy I have never tested that, but I believe this bug could occur. There is no sense to make the cost so high that it'd take more than a second to finish...
387
Quote: Originally Posted by BigETI Since the thread which runs the server scripts actually won't fire a disconnect call to the scripts during expensive calculations. Which means Player A c...
387
I think I may have found an issue, but I'm not completely sure about it, so please correct me if I'm wrong. Imagine the following scenario: Player A joins the server, and enters his correct password...
387
Because the variable "level" is of an integer datatype. But you told sscanf that you are expecting a string. pawn Код: if(sscanf(params,"i", level))
89
You are probably already using the same dialog ID in another script (perhaps your gamemode) and thus most likely not returning 0, or you are not returning 0 in the callback in your other script(s) at ...
280
Instructions to download the source code can be found here: https://code.******.com/p/sa-mp-mysq...ource/checkout
87
https://code.******.com/p/sa-mp-mysq...e/#svn%2Ftrunk
87
Nope, same problem here. AndreT seems to have found a fix/workaround for it, but unfortunately no luck here.
95,271
Although it may not be directly related to your problem, it's still something you might want to correct. pawn Код: new banned[1];     mysql_get_field("banned", banned); The field 'banned' in ...
122
It seems that you must be logged in as a RCON admin to be able to use these commands. Also note that you are returning 0 even if a command was successfully executed, causing the 'Unknown command' mes...
112