Search Results
What's wrong with it?
240
Are you using an object streamer?
148
Read guides on MySQL, you need to create a database for your characters and collect the data when they log in and store it, and update it when things are changed
192
Can you show us the IsACop function? It's probably something to do with that
282
You're turning even when the loop runs once, so it's only destroying one car then closing the function. Remove the return 1; PHP код: CMD:veh(playerid, params[])  {      new id, Floa...
63
You're not specifying the skinid on line if(!IsACopSkin && !IsPlayerFED(playerid)) return 0; !IsACopSkin > !IsACopSkin(skinid)
165
There is something wrong with your mysql_connect(), 127.0.0.1 is localhost, is the database hosted on your computer?
91
Set up a timer ongamemode init that calls a function to start the hourly timer. You'll need to work out how many minutes are left until the hour ends, so something like (ongamemodeinit PHP код: ...
99
I don't really understand what you need help with
156
https://sampwiki.blast.hk/wiki/Random Can't you just use that?
156
I'm just showing him how easy it was. It's just a loop and storing variables, it's not like I wrote a whole script for him. I doubt he's just going to use those simple commands and if he is it's prett...
159
The script I wrote works just fine for me
159
Yes. It will. It'll also cause other queries you do to get bottlenecked and could take a while for that query to be processed if there's a constant queue. Why do you need that in the database? Can't ...
122
It's not always about the script, huh. Anyway, you'll need to get a scripter to have a look at your script, we can't help you without knowing where your script is unoptimized
227
You'll need to have a variable to hold the colors and then run a loop via your command to set them all. I.E; PHP код: CMD:toorange(playerid, params[]) {     for(new i = 0; i< MAX...
159
Delete the object and attach it to the player when the player goes fishing and ApplyAnimation(playerid, "SAMP", "FishingIdle", 1, 0, 0, 0, 0, 1); Then delete the attached object and spawn the object ...
88
You should add the player class's in the gamemode so it doesn't create loads of classes every time the FS is loaded, or you can set a variable in the gamemode to say that the classes are already loade...
226
Cut it into multiple lines; PHP код:             ShowPlayerDialog(playerid, 18, DIALOG_STYLE_MSGBOX, "Detective", "Skills:\n\nLevel 1: Kamu bisa melacak seseorang selama ...
67