Search Results
Quote: Originally Posted by aRoach You posted the same thing... And if you would've taken the effort on looking at the post date and time, then you would've noticed that the time is exa...
188
What you are searching for is called strcat. Take a look into this pastebin for examples: http://pastebin.com/e4mqNfgQ
188
From where did you hear this O_o? But I surely hope this isn't true.
116
Use the OnPlayerDeath Callback and use the playerid, killerid, reason parameters. Also use the GetPlayerName function, from the playerid & killerid. This is all I can help you with right now, as y...
110
If I understand correctly, you mean something like this? BlackPlayer (skinid 1) OrangePlayer (Skinid 3) PurplePlayer (Just Connected is in class selection) Class Selection for PurplePlayer: Skinid1 ...
74
Title says it all, I have been trying a few different methodes by making a normale stock to get a Random playerid, but it seems alot more complicated than it actually looks like. pawn Код: new rP...
170
Quote: Originally Posted by [GF]Sasino97 ApplyAnimation won't apply to the NPC if that anim isn't recorded. Oh, I didn't know this, perhaps because I never experiemented with it. Thank ...
70
I've just added 3 print's to your script, could you please test it and repost the output of the console? pawn Код: if(IsPlayerNPC(playerid))    {        print("This player is a NPC, Proccee...
70
Quote: Originally Posted by Darnell It doesn't make everything in lines, everything is together. Maybe that's because of this line? pawn Код: new coordsstring[255];        forma...
130
Quote: Originally Posted by Double-O-Seven There was a plugin which supported killing NPCs, however, it's been deleted and is now forbidden. Forbidden? Where is this rule written becaus...
91
Why not just make your own VIP System, trust me it isn't that hard. If you would like to then I (or others) could perhaps explain you how it could work.
66
It doesn't work 100% most probably because, re-read the Quote once more :P. Quote: Originally Posted by Improvement™ Yep, it returns the timestamp since the date of 01 January 1970, and...
105
A Quote that helped a person, might be usefull for you too. Quote: Originally Posted by Improvement™ I would suggest you to make some kind of "Test Server" and search for functions on SA...
153
Quote: Originally Posted by Cowboy 1) How would I be able to cancel a player's attack? By that I mean, right before a player tries to hit another player, his hit will be cancel. I saw this...
140
Quote: Originally Posted by Unknown123 ok, so you made a temp ban/mute system, what does that help me? i dont see any of your posts that you have realeased it so idk who you did it I wa...
105
pawn Код: public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger){    new PlayerName[MAX_PLAYER_NAME];    GetPlayerName(playerid, PlayerName, sizeof(PlayerName));    printf("[print] %s...
156
Quote: Originally Posted by dahley5 Looks pretty hard i don't understand it . Just take a close look at the examples on that page, try going from step to step, if you understand the fi...
160
I would suggest OnPlayerKeyStateChange and IsPlayerInRangeOfPoint instead of using useless timers (No offence RealCop ) that makes it more complicated later on.
168
Quote: Originally Posted by Unknown123 it return the current timestamp rite? i want to make an temp ban script so i can create the timestamp for 2 days/months/years in future so i can use...
105
pawn Код: ApplyAnimation(playerid, BOMBER, BOM_Plant, Float:4, 0, 0, 0, 0, 0, 1) Supposed to be: pawn Код: ApplyAnimation(playerid, "BOMBER", "BOM_Plant", Float:4, 0, 0, 0, 0, 0, 1); You also ...
79