Search Results
Show us your definition of 'A_Objects'. It could be that you've defined it as A_Objects[MAX_PLAYERS][MAX_OBJECTS] and are using A_Objects[MAX_OBJECTS][MAX_PLAYERS].
117
Wow, of course you can do that in Pawn. Look up Slice's Mailer Script or you can even write it yourself since we have the HTTP include to GET / POST data.
152
Not until we look at your connect / register / login code. One theory is that you could be calling the Save method with an invalid playerid, so when you try fetch the name of the player, it's blank.
63
You forgot to parse a variable to the SName1 function. Also, it's a function so you have to call it suffixed with parenthesis. Also, SName1 is a terrible name for a function. pawn Код: // GetName...
153
You need to give us some context as to when the error occurs. Also, drop the caps, it's not needed and just makes you sound like a jerk.
193
This is not the appropriate place to ask for scripts. Try the script request thread.
75
Have a go at creating this yourself. If you have any issues, come back here and post them. All you have to do is look at the wiki and find the GetPlayerScore function.
156
Use phpMyAdmin / Other MySQL DB Manager.
144
You didn't replace [color] with your desired colour. Also, that snippet has flawed logic. It'll fail if the player HAS more than 1000 score. pawn Код: if(GetPlayerScore(playerid) <= 1000) retu...
138
This is not a 'GIMME TEH CODES' forum. Go elsewhere for that. Attempt at creating the commands yourself and we will help you along. Also, if you're asking people to spend their time doing something fo...
92
http://stackoverflow.com/questions/2...-vs-flat-files
97
Why exactly do you want to do this?
122
Why would you want a log file stored in a key=value format?
106
pawn Код: if(dini_Int(file, "X") == 0 || dini_Int(file, "Y") == 0 || dini_Int(file, "Z") == 0)        {            SendClientMessage(playerid, COLOR_RED, "You do not have /saveplace!, /s...
123
You really shouldn't be using else statements in player loops. For instance, if there are 100 people on your server and only one of them is within 5 units of you, it'll spam "~w~Salia jusu ~r~nera ~w~...
112
Okay, the problem here is with your logic. When you loop through the players, you check if the person is a cop and show all the wanted players inside the loop. Since looping starts from ID 0, this wil...
112
Update your sscanf to the latest version.
101
It does not, as long as it's not inside any other function.
103