Search Results
I had the same problem but with a different plugin. I ended up just getting a Windows server host.
215
I haven\'t had a chance to try it but I love the idea and the controls sound realistic. Good on ya. Rep+
1,003
I have solved the issue. I needed to put lastpos = 0; inside the 'new record' case. I don't know why but strdel was causing problems. All good now.
121
Quote: Originally Posted by khRamin78 im not sure but this callback needs to return a vale > you have to put return 1; at the end of callback i think it will fix that Didn't work....
121
I have created this function to display match stats after a game. It runs loops to check how many goals all players scored and it will list multiple names for a record if there is a shared record. The...
121
This code is giving me a tag mismatch. If I get rid of the 'newredratingdiff' float it will compile without error. PHP код: rating[i] = rating[i] + newredratingdiff;  EDIT: Solved. ...
50
Thanks for the tips guys. I've just put in some anti spam measures and that's solved the problem for me. I've noticed on occasion I'm getting people sending fake death messages. How boring are these p...
185
This code: PHP код: if(Text3D:label[playerid] != -1)  Is giving me this error: Код: warning 213: tag mismatch Here is some of the involved code: PHP код: new Text3D:label...
80
Wow thanks mate that's really helpful. Getting closer to a full solution. I'll see how far I can get from here. Rep+
157
Yeah as you say I want the co-ordinates to be relative to the facing angle as well. I forgot to mention that part. You wouldn't happen to know how the trigonometry will work would you?
157
I'm wanting to detect if an object is within a rectangle relative to the players co-ordinates. IsPlayerInRangeOfPoint() can work but it detects within a sphere. I want the range to be more specific ab...
157
That's really cool! Good to see something creative.
1,099
I had someone join my server with the name of Ajugar_Futbol. He left and about a minute later 6 bots with the same IP address as this person joined the server and started spamming the chat with random...
185
Absolutely. People claim that it can get boring being locked up in a prison but if there are enough features to keep the game interesting I think it can be successful.
374
https://sampwiki.blast.hk/wiki/Scripting_Basics This is a good place to start. Scripting is not something you can learn over night and it will take a lot of trial and error before you start to really...
155
You could use GetPlayerName() within the format() function but it's just cleaner to set the string of pname at the start then reference it from there. Hope that answers your question.
69
I don't think this is the most efficient way of doing it but it should work I imagine. Try this: Код: CMD:rights(playerid, params[]) { if(IsPlayerConnected(playerid)) { new string...
69
I was going through an old script and I've used '&' within an If statement. I don't remember what this actually represents. I understand that '&&' is used to check if multiple statements a...
84