Search Results
I've had the same problem when I was updating to R41, there are a lot of functions that have been renamed and take parameters in a different order now. Check this https://sampwiki.blast.hk/wiki/MySQL...
97
I've got the crash detector installed and I disabled the timers so they are no longer running. The server still crashes though and the crash detector does not reveal anything. I will try the profiler ...
134
As a matter of fact, I have disabled all timers and timer-related callbacks and the server still keeps crashing after some time of normal operation. There are no lags, nothing indicates that the serve...
134
Hi, After having done some development works on my gamemode, I recently transferred it onto a VPS server that operates a Debian 8 OS. The gamemode was working fine on Windows but when I run it on Deb...
134
Everything is according to the wiki and as a matter of fact it just started working for an unclear to me reason but I have further related problems, which I will post in a separate thread since they a...
160
Are you passing any parameters to the callbacks OnClanLoad and OnZoneLoad when the query finishes executing?
141
Hi, I have recently updated my gamemode script to work with the latest version of BlueG's MySQL plugin. After updating all the includes, plugins and the script to use new functions, I have encountere...
160
Under OnGameModeInit: pawn Код: DisableInteriorEnterExits();EnableStuntBonusForAll(0); Come on man, wiki-samp, don't be lazy.
56
As our colleague above said, use: pawn Код: // At the top of script under includes:#define PRESSED(%0) \    (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0))) Then under...
150
Removed ******'s fixes2.so plugin and the problem is solved. Perhaps the version that I had installed was out of date. In any case, the problem is gone.
140
Hi, I have a good question for those of you who have a little more experience with pawn. Namely, in my gamemode I have a looping timer that repeats every 1 second. The problem is that something cause...
140
Not trying to diss, but...seriously?
915
Wrong forum, open your eyes next time.
135
He released something very useful, so if you don't want it, then at least have the manners to not make stupid comments.
155
Just use something like this: pawn Код: if(strfind(word,"http://",true)!=-1 || strfind(word,"prpg",true)!=-1 || strfind(word,".com",true)!=-1 || strfind(word,".net",true)!=-1 || strfind(word,"91."...
128
I gave you the fixed code. What's the problem now?
256
Fixed: pawn Код: CMD:glogin(playerid,params[]){    if (PlayerInfo[playerid][LoggedIn] == 1) return SendClientMessage(playerid,COLOR_RED,"ACCOUNT: You are already logged in.");    if (!udb_Exi...
256
A fraction of my code, no need to explain since it is self-explanatory: pawn Код: new        Cache:car_cache,        query[128],        opis[128]    ;        mysql_format(databa...
237
You do have to bear in mind that the actual usage of the resources that you have depends on how well optimised your gamemode is. That is the determining factor that will dictate performance.
95