Search Results
Quote: Originally Posted by silvan Guys i'm having this error when I try to load the plugin with server, can you help me? Code: Failed (libmysqlclient.so.18: cannot open shared object ...
96,055
It's your sscanf that makes your command work as "giveleaderorg 45 0", check: https://sampforum.blast.hk/showthread.php?tid=602923 It won't show the list because most likely, you are putting a valid ...
162
If you would not want the player to have any relation to the ID, you can make it all related to the enum itself. Add a player id variable in your spawn position enum and when a player spawns on the sa...
482
Give your random point an id and a boolean, false by defaut. Every time a player spawns at that point, set the point boolean to true (as someone has already spawned at the said location) and also mak...
482
Haven't seen the code, but sounds fair enough for a 30-minute work. Well done.
1,407
I am assuming that you have not scripted this function/script you are using. Make sure you have set your clan tag to a value. Your tag seems to be null/empty string at the moment (you can verify it by...
206
Код: YCMD:confiscate(playerid, params[], help) { if(!IsACop(playerid)) return SCM(playerid, COLOR_GREY, "Nu faci parte din factiunea politiei."); if(OnDuty[playerid] == 0) return SCM(playeri...
101
Quote: Originally Posted by TheToretto /save ingame for more precise coordinates. Do the following command while in your vehicle.
175
Thanks for teaching me senpai.
260
My bad. Been a while since I last coded in Pawn. Edited.
260
pawn Код: isBike(vehicleModel) {    for (int i = 0; i < sizeof(Bikes); i++) {        if (Bikes[i] == vehicleModel) {            return true;        }    }    return false;} ...
260
I like the textures and combinations, but idea is wrong. Detective's offices are not like that, unless it is a head office, and they are not even right at the entrance (plus they are too messy for no ...
2,180
LimitAdjuster causes lag sometimes. If you are running on Dual GPU (which you most likely are), then set the Nvidia GPU as default for GTA Sa.
767
Finally a modern look at Pershing. Nicely done!
2,679
Quote: Originally Posted by Kalcor I don't watch anything on utube unless there are no alternatives. If there's a time to support alternative platforms, it's now. It's impossible for Goog...
5,640
It's not about your MySQL plugin missing; it's about your MySQL plugin version being incompatible with the version the script was last compiled with OR your MySQL plugin being incompatible with the Li...
1,029
Quote: Originally Posted by Kalcor I'm not making a moral case against utube. They can run their site however they want. I've decided to stop using them. My last upload to utube was in 200...
5,640
Quote: Originally Posted by Pottus Looks good, just want to know why do you mappers always got to use damn wood floors? I would say that is the only deficiency but you pull it off so damn...
1,108
Putting together snippet codes I started building scripts. Slowly, I realized that I was actually building things on my own rather than copying snippets and sticking them together. With that being sai...
2,065