Search Results
Use database for bans, but also ban them on samp sever (samp.ban). Check for expired bans every few minutes and when ban expires also unban that ip on samp server (i think you can just call rcon comma...
2,660
Check if LAN IP (192.168.8.100) belongs to your machine. By the way that IP is very strange, that 8 is very confusing...
5,635
Quote: Originally Posted by supermember Ohh thank you, xRadical3 .. thanks bro! what 's "s[144]" ?? That is a SSCANF parameter, it just tell's that argument should be a string that is...
1,358
You wont find anything similar to House. That show was unique in its own way, the best you can hope is to find something else that is unique and that you like. Try "The Night Shift", its not like Hou...
1,307
Looks like process is not killed and still running, hence still using given port and when you try to start new process, that port is already taken by previous instance.
1,897
You need to hook OnPlayerConnect function.
258
Some animals with proper animations would be nice...
984
Quote: Originally Posted by OstGot Thanks, but it seems that this function is unstable, therefore it's hidden and inaccessible in samp by default. As far as I remember, different players h...
2,289
Just get https://github.com/pawn-lang/compiler and use something like Sublime or Visual Studio Code
421
Quote: Originally Posted by ATomas To fix this problem, use MoveObject again when the player connects to the server. I think SA-MP could fix this bug in the next version. It's a bad solu...
2,916
If done right, MySql will be more powerful, but file logs are way easier to rotate and backup (not that it would be hard with MySql with few queries inside a script, but it would take time and load on...
1,580
Long time ago (like a year maybe even more) i modified FCNPC and ColAndreas for pathfinder prototype. What i basically did is use pathfinder plugin, and use simple coordinates like it does for mapandr...
1,790
Its probably script itself. Its just sees 0.3dl id's as invalid.
396
Usually you want to save on each change, even money. But some things like online time, i would save on timer basis and call single query (well a few queries are not problem as long they are not for ea...
2,586
I have both VS and Sublime installed, but for 90% of things i use Sublime for simple reason, startup is blazing fast. The only reasons i like and have VS Studio is that out of the box it has better in...
1,018
I through my browser failed to load font for some reason...
1,584
pawn Код: enum PlayerData {    pAdmin,    pHide,    pKills,    pDeaths}new pInfo[MAX_PLAYERS][PlayerData]; If i were to guess i would say that wont work, but these is why im asking (so tha...
1,417
Short answer, it should not be possible to have array in enum at all. Possible patch for your problem (i didnt test it but should work just fine) pawn Код: enum fInfo{    fID,    fName[32], ...
525