Search Results
Cheers @Konst, OnPlayerDeath does work, so I tried the player explosion which didn't work. Added the explosion / clear animations functions to a 2 second timer on death. They're called but didn't wo...
126
Hey all, A pretty well know issue, once a restart has taken place, every following time a user dies they will have 0 HP and be able to walk around, shoot until their HP changes again or if they jump ...
126
It's back! http://convertffs.com/ You may need to reset your DNS if it has not updated automatically, apologies for the downtime.
580
Love this update, very good addition. Can anybody think of any good uses for damaging / killing actor's? I want to implement something where killing the actor is involved but can't think of anything ...
2,246
Hi, To see how many players are in the checkout you can use IsPlayerInCheckpoint() https://sampwiki.blast.hk/wiki/IsPlayerInCheckpoint - create a var which counts player (make it start at 0) - loop...
161
Hey Aero, I leave work in about an hour so will be able to fix it then. If you want to know when it's back up you can watch this post - https://www.********.com/pages/Pilot...53910308076686
154
You can use the tool @ http://convertffs.com/ simply insert your objects and press 'Convert' !
126
Quote: Originally Posted by Diabloa Lol, from $50 to $35? That's a scam, congratulations. If I were to use it often then use I wouldn't be too happy but I was randomly gifted one at som...
203
Quote: Originally Posted by Accent When did you exactly get the money? And do I have to add my voucher code and it send the money to my paypal Yep, as simple as that. Just enter the det...
203
Hey, I used http://psc2wm.com/paysafecard_en.html about a year ago I had a $50 paysafecard and just did it as I had nothing to lose, thought I'd try it out. Wasn't expecting to get any money back but...
203
Hey Jimmy, it's been awhile ! Another way would be removing a few of what you're saving and save them separately when they need to be saved. E.G `admin` - You'd only need to save that whenever it ge...
141
This part below is the part that is updating the object for all users, simply remove it and it will only update for the player until they've clicked saved then it'll update for everybody. pawn КоÐ...
87
Can you show us the code you already have, we may be able to help fix it .
161
The hittype's aren't defined in the SAMP includes yet so you have to add this to the top of your script. pawn Код: #define BULLET_HIT_TYPE_NONE            0#define BULLET_HIT_TYPE_PLAYER  ...
114
You need to use %f to display a float in PAWN - Example below. pawn Код: new string[128], float:Health;GetPlayerHealth(playerid, Health);format(string,sizeof(string),"Your current health is %0.0f...
161
I can't say for sure but I'll assume so as you'll still being hit. You'll have to test it in-game and see if the function gets called though
131
Hi, I made a simple code to detect this the other day, it works well but can't detect users who are in a vehicle (Limitations with the OnPlayerWeaponShot Function). You can change the 8 value but the...
97
1. You need to delete the 3d text label as well, SetPVarInt simply stores the ID of the 3d label so you can use that ID to delete it later with Delete3DTextLabel - https://sampwiki.blast.hk/wiki/Delet...
131
You've forgotten to set a color for your 3d Text. pawn Код: Create3DTextLabel("Rob Bank", COLOR_HERE, 2309.1899,-8.4444,26.7422, 200, 1, 0);Create3DTextLabel(text[], color, Float:X, Float:Y, Floa...
79
Have you tried using IsValidDynamicObject? This should return the first free object slot where an object is not valid. Not tested ! pawn Код: stock GetFreeObjectSlot(){    for(new o; o < MAX...
70