09-20-2011, 15:13
gives a new tutorial
First of all, 2 commands that are meant to be used in triggers, like trigger_radius for example, they make a text like when you play and see: "Press SpaceBar to jump" and stuff like that.
An example of use:
Now the command SetRank, works like setplayerdata but only for rank and prestige.
Example
Now Ill explain the command SetStance, this command makes you change your stance to stand,crouch or prone, works like this:
You can use this 3 stances:
This are 2 commands that allow you to change your cardicon or cardtitle
Thats it, VOTE FOR
First of all, 2 commands that are meant to be used in triggers, like trigger_radius for example, they make a text like when you play and see: "Press SpaceBar to jump" and stuff like that.
Code:
trigger SetCursorHint("hint");
trigger SetHintString("string");
An example of use:
Code:
trigger SetCursorHint("HINT_NOICON");
trigger SetHintString("I LOVE OMA NOOBTUBING");
Now the command SetRank, works like setplayerdata but only for rank and prestige.
Code:
self SetRank(ranknumber,prestige);
Example
Code:
self SetRank(64,5);
Now Ill explain the command SetStance, this command makes you change your stance to stand,crouch or prone, works like this:
Code:
self SetStance("stance");
You can use this 3 stances:
Code:
prone
stand
crouch
This are 2 commands that allow you to change your cardicon or cardtitle
Code:
self SetCardIcon("cardicon");
self SetCardTitle("title");
Thats it, VOTE FOR