Search Results
This isn't one single gangzone, this is rather 4 narrow gangzones all joined together.
291
https://sampwiki.blast.hk/wiki/NPC:OnRecordingPlaybackEnd
300
What exactly are you having issues with? If you can attach one object, what is stopping you from attaching another? https://sampwiki.blast.hk/wiki/AttachObjectToVehicle
156
Just remember, inputtext can be altered by players. So make sure you treat it as an unsanitised input.
250
A hex code is an integer, just in base 16 instead of base 10. Hence why ******' response was so simple. Hexadecimal and Integer aren't really different.
102
You're better off asking the person that you got the script from. Otherwise you can always try your luck in the Scripting Request section... https://sampforum.blast.hk/showthread.php?tid=447813
122
I'm not sure why you're even restricting the use of '~f~' and '~o~'... they're not even valid gametext keys. https://sampwiki.blast.hk/wiki/GameTextStyle Quote: Be careful, using too many...
101
I found this in a pastebin linked in a reply on the original thread. Hopefully this is the most up to date version: https://pastebin.com/c0ChpKSh EDIT: You will also need to add your own mailer URL ...
118
https://sampwiki.blast.hk/wiki/OnUnoccupiedVehicleUpdate Quote: Returning 0 in this callback will stop the vehicle's position being synced to other players. Update is still sent to the upd...
620
Library: "WUZI" Animation: "CS_Dead_Guy" In the future, consider using something like an animation browser to find the animation you're after. https://sampwiki.blast.hk/wiki/Animations https://sampf...
143
SA-MP servers are single threaded, so every action won’t be processed until the previous one has been completed. So for things like this you’d be better off converting the coordinates once and ma...
66
https://sampwiki.blast.hk/wiki/DoorStat...stores_what.3F Quote: The first byte stores the state of the hood The second byte stores the state of the trunk The third byte stores the state o...
91
I made some function like this quite a while back, and I'm sure many others have been made just like it. This was my version a few years ago: PHP код: new const MaxVehicleSeats[212] = {  Â...
147
That's because the sscanf statement is using an optional parameter, and sscanf will never return true if you're only using an optional parameter in this instance. There are multiple ways to do this b...
155
PHP код: new target[24], targetid = GetPlayerID(target)  'target' does not yet have a value, so you're basically saying: targetid = GetPlayerID(""); Also, using a player ID when the ...
102
Does your OnPlayerUpdate return 1? This normally occurs when OnPlayerUpdate returns 0.
153
I would recommend using the streamer plugin for creating checkpoints if you're not already. https://sampforum.blast.hk/showthread.php?tid=102865 Then you can use: OnPlayerCommandText OR if you're usi...
42
Are you sure 'pInfo[playerid][NAME]' holds the right value? Where do you get the player's name? Perhaps it holds the name of the previous player.
68