04-02-2012, 12:44
Hello
A new command tutorial. The first command is LastStandRevive, if you are in last stand and you call this command, you will wake up,
The usage is the following one:
Now, 3 commands relationed with mantle (climbing), the first one checks if you are mantling something.
The next one detects if the player can mantle or not:
The third and last forces the player to mantle.
Lets put an example with 2 of them toghether, if you can mantle, it will automatically does it for you, great for glitching:
Thats it.
A new command tutorial. The first command is LastStandRevive, if you are in last stand and you call this command, you will wake up,
The usage is the following one:
Code:
self LastStandRevive();
Now, 3 commands relationed with mantle (climbing), the first one checks if you are mantling something.
Code:
if( self isMantling() )
{
DO SOMETHING
}
The next one detects if the player can mantle or not:
Code:
if( self canMantle() )
{
DO SOMETHING
}
The third and last forces the player to mantle.
Code:
self ForceMantle();
Lets put an example with 2 of them toghether, if you can mantle, it will automatically does it for you, great for glitching:
Code:
if( self canMantle() )
self ForceMantle();
Thats it.