Search Results
perhaps the new filterscript is broken, and therefore stops, crashes, or hangs.
128
try using notepad++ instead, you can change things in that.
169
do the filterscripts fail to load, or do they just not work as intended? remember there is a limit to the number of fs that you can load at one time. I think its 10 or 9.
128
pawn Код: public OnPlayerRequestClass(playerid, classid){     printf( "OnPlayerRequestclass %d classid %d" , playerid , classid );     //rest of callback as normal
123
debug this by putting a print at the beginning of the callback that shows you the classid.
123
It is normal for selection mode to be cancelled when you press escape in a dialog, you really don't need to have selection mode open when a dialog is displayed anyway. I suggest you cancel it before ...
175
The MoveObject command was changed between 0.3c and 0.3d https://sampwiki.blast.hk/wiki/MoveObject You should use this as a chance to re-script your gate code to take advantage of the fluid rotation ...
173
- Use svn or repository software to keep track of everything you do / changes etc. - make all of your locations, spawns, entrances, everything dynamic, so you can easily move them later - think about ...
102
I suggest you learn how to add a command in dcmd before converting your whole command processor. Quote: Originally Posted by Shetch Why can't you just do it using dcmd? snap!
191
note: 0.0 , 0.0 , 0.0 on the map is just underground a farm in blueberry, this should help you to find the problem in your code. further note: check https://sampforum.blast.hk/showthread.php?tid=1203...
195
correction to the above pawn Код: for(new i; i<MAX_PLAYERS; i++)if( IsPlayerConnected(i) )        if(ReceiveMess[i])            SendClientMessage(i, -1, string3); You may also want t...
152
You could use the optional specifier option pawn Код: if(sscanf(params,"s[50]I(-1)", string , slot )) This will allow the code to process the string, and ignore the next parameter until it is nee...
166
~Bumping~ your thread actually diverts attention away from it
189
Try replacing space with underscore, underscores will appear as spaces in textdraws.
153
you could try using a query like this SELECT * FROM table WHERE UPPER(`name`) = UPPER('%s')
134
Relying on pre-written scripts for important things like admin systems is a step in the wrong direction, especially if you want to understand or change it in the future. If you are interested in learn...
126
serverffs is not for people who dont have a very good knowledge of how to run a server without constantly asking for help.
217
Moved to scripting discussion because this is a scripting issue. Here is a rough list of things you need to do to upgrade your server ( to any version ) - make sure you have the new server / client p...
64