Search Results
You want to count how many times a player jumps off a jump(ramp) with a vehicle?
127
Grim_'s code will work, But i noticed u asked for sscanf, here is a sscanf rebuild: pawn Код: COMMAND:stats(playerid, params[]){   new otherplayerid;   if(isnull(params))   {       // S...
135
You have a vehicle ownership system with clearly enough enum values to do so, and you dont have a /buycar command? Do you mind if i ask what script your using?
100
Wow, im suprised how easy that was to do. Great job 10/10
1,714
@ ricardo178 Why not just loop through MAX_PLAYERS, checking if there in a vehicle id, you wish to make faster, Then simply check when there in the fast vehicle/s, also checking buttons pressed, if t...
162
Clan ranks, Clan of the month, Most dangerous/weakest clan board, takable turfs which clans can defend/dominate etc
194
Quote: Originally Posted by seanny I notice that the Creater of the GodFather, FeaR is Never Active anymore, Why is that? I knew this since I first checked the GF Thread, But I wonder why ...
241
Define the classes like so: pawn Код: #define CLASS_ONE#define CLASS_TWO Make a stock that seperates the team from AddPlayerClass, So the 1st AddPlayerClass will be 0, the 2nd 1 and so on. paw...
88
Quote: Originally Posted by ylleron it set editor and not me. Here i can't use TAB. You dont use tab in pawn, or even c#. Thats for html indentaion lol Use another line and 4 spaces b...
403
EDIT lol yeh put #pragma unused params under the callback/command and it will compile.
114
You code like this: pawn Код: if(statement(here)){    if(statement(here))    {        if(statement(here))        {            //code here        }    }} Not like this: ...
403
Why so many CNR edits? Its liked all released CNR gamemodes are a BMUK lvrcr edit.. Really if you can code pawn while understanding what you are doing, you should be able to script a 2 team TDM(Grove...
2,722
I hope the bbcode is making the indentaion from the first bracket/s 8 lines..Because if it wasnt, its a un-tidy tutorial because the indentation is wrong. Pawn uses 4 lines, i forget what but somethin...
403
Just show a GameText with there jailtime? like: pawn Код: format(string, sizeof(string), "~r~Jailtime:~n~~g~%d", jailtime);GameTextForPlayer(playerid, string, 3000, 5); Well thats all i do..Repl...
113
Quote: Originally Posted by Grim_ The _: makes the variable tag-less. Originally you were returning a float tagged variable, by adding the _: tag (which is equivalent to no-tag) it removes...
158
Thankyou for you assistance guys. @ Grim_ Thanks dude but that shows, Код: (94) : warning 208: function with tag result used before definition, forcing reparse @ [L3th4l] My god that compiled ...
158
Ok im trying to make a simple stock thats returns the players health in a float. Heres the stock: pawn Код: stock GetHealth(playerid){    new Float:pHealth;    GetPlayerHealth(playerid, pHea...
158
OnPlayerDeath...TogglePlayerSpectating...PlayerSpe ctatePlayer...You may need to use a timer for the 3 secs, and im also not sure if you can spectate yourself. Quote: Important Note: Ord...
52
Quote: Originally Posted by [HiC]TheKiller if you are using brackets. Since when does a if statement ever have a semi-colon? Please explain how, and why it is used on a if statement?
118
@ Chrillzen I will, im actually still learning better optimizing techniques, and when im confident i know what im doing completely i will be sure to add alot more examples. BTW the example in the com...
659