Search Results
Thank you for the fast replies! I'll try several objects CreateObject and leaving other at Dynamic. It won't be much, maybe a hundred at most. If that doesn't help, I'll try your tips and tricks
257
Quote: Originally Posted by Dayrion Why don't you use CreateDynamicObject on every object (except custom interior) with the streamer plugin? Objects are destroyed until you are streaming i...
257
I really miss those days when I was up to date with everything related to SA:MP. Now, I almost forgot how object streaming works so I need you guys to refresh my knowledge! Basically, I was asked to ...
257
Any of the above examples are good, but also consider using IsPlayerInCheckpoint
145
No need for real_escape. Just use '%e' instead of '%s'
266
The object will be visible only to you. Others would have to download your .img file
210
Use this to avoid the bug that causes to crash the server. pawn Code: CheckDialogBug(message[]){    new message_length = strlen(message);    for(new i; i < message_length; i++)    {     ...
82
You create a player timer that will repeat itself every second. In the callback/public, you create Player textdraw that will update itself and show on the screen whenever timer is called. You kill the...
150
https://sampforum.blast.hk/showthread.php?tid=602886
76
Use this - https://sampwiki.blast.hk/wiki/GetActorHealth Put this check in a command and shoot him. See if his hp is reducing.
113
Why don't you try by yourself first?
113
Quote: Originally Posted by zPain You must check if the specified id is invalid before accessing the array. PHP Code: if(PlayerInfo[id][LoggedOn] == false) return SCM(playerid, ...
269
Sure but nothing is wrong in the command tho pawn Код: CMD:gethere(playerid,params[]){    if(PlayerInfo[playerid][AdminLevel] < HEAD_ADMIN) return SendClientMessage(playerid, COLOR_NICERED, ...
269
Quote: Originally Posted by Sjn He didn't post the entire command code. I doubt there might be a run time error. Use crashdetect, compile with-d3. You were right. I didn't however compi...
269
Hey everyone! Just adding some basic commands and debugging when all of a sudden I notice something weird. I have a custom message in OnPlayerCommandPerformed and that's ok, but why is it being calle...
269
And how does your OnVehicleSpawn looks like?
123
Some other guy also had a problem with includes, take a look https://sampforum.blast.hk/showthread.php?tid=609287
175
Quote: Originally Posted by Alpay0098 If its not used, so what's the point to respawn it there again? There are some points: 1. If a player runs into a car and moves it that way where ...
150
I think he wants to respawn all vehicles even if they weren't used, right? AddStaticVehicleEx will only respawn a vehicle after being left so what you would need is a timer. pawn Код: new carRes...
150
Thanks, I'll try this one. Just gonna watch football first of course. I will inform you here by an edit. EDIT: Your code was very similar to what I tried to do and now when I fulfilled it with yours...
240