Search Results
Well first step would be finding out what the interior id is and then the position of the place you wanna go. Then you use the setplayerposition function which can be found documented on the wiki, and...
73
Check your mysql_log, see if it has anything of importance to say.
86
Try something like pawn Код: for(new t = 0; t < 5; t++){TEST[t] = random(10);}
145
Missing a , in the strcmp as far as I can see, you're currently only inputting one arg while strcmp requires 2, kinda surprised if you can compile that to be honest. However, whether that is the sole ...
122
Cause there's an error in the code within the command probably, not much to be done from the information you provide.
75
They're fairly easy to ignore, or just refer them to the looking for scripter thread.
65
Save it without any special characters/symbols.
111
Special idea but the features aren't really unheard of. It could maybe work out. Also don't worry about your English, it's fine.
139
Definitely not dead, I'll admit it's impressive how well it's still alive.
202
Quote: Originally Posted by YahyaBR Worked, btw, what does the "u" inside the sscanf means? i thought that was only a message when they didn't put a reason or amount..... Thanks for your ...
167
Код: IRCCMD:sethealth(botid, channel[], user[], host[], params[]) { if (IRC_IsVoice(botid, channel, user)) { new playerid, Float:amount; //Line 477 if (sscanf(params, "uf", playerid, a...
167
Could you possibly explain your problem a bit further, I'm not really getting it.
58
Quote: Originally Posted by Mijata bump I misunderstood your post in looking for scripters, thinking you were looking for advice. If you don't wanna actually do the code yourself. Then ...
144
Quote: Originally Posted by admantis This would require only a bit of logical thinking. pawn Code: new richest = INVALID_PLAYER_ID;new amount = 0;for(new p = 0; p < MAX_PLAYERS; p ++)...
168
You can't use the same case label (DIALOG_RENT) twice in same switch. Instead put all the code into one of the cases and remove the other.
156
Have you tried doing what it asked you to do? As in updating your drivers. Also this is not really the correct place to ask for help regarding it, a proper place would be in the map editor thread.
105
for(new h = 0; h < MAX_OWNABLE_HOUSES+1;h++) If you have your: new HouseInfo[MAX_OWNABLE_HOUSES][e_HouseInfo] like that. The above code would give the array out of index error when getting to last ...
209