Throw question (manual)

PS_VITA

Active member
Hey guys,

from the game I'm learning from the values for "Throw"
@cmd    throw 20 1 2 4 0

But the manual only shows two values -


throw {dist} {height}

    Controls the angle at which this player or enemy flies if they get thrown.
    {dist} is the distance that this entity will fly.
    {height} controls how high off the ground this entity will get before it starts falling back down.


my question is - what are the other 3 values for and where can I find the latest manual link?
 
"throw {dist} {height}" is not a command, it is a value for the character header, which defines those properties.

"@cmd throw" is a script, which must be defined in a * .c file, which normally indicates a throw with certain properties

They are two very different things
 
As Toranks said these are two different animals

@cmd throw is script, so look in your animation script for it
The values are (Damage,  Type,  x,  y,  z, facing)


Generally anything with @cmd Infront of it is script
 
Back
Top Bottom