19.01.2012, 06:06
Hi ,
i'm trying to make a command which i can test out each animations in-game.
(i'm using SSCANF and ZCMD)
But when i click enter for the command , for example , /tryanim BD_FIRE BE_Fire1 4.0 1 , my game just crashes.
I hope someone can help me point out my mistake.
Thankss
i'm trying to make a command which i can test out each animations in-game.
(i'm using SSCANF and ZCMD)
Код:
CMD:tryanim( playerid,params[]) { if ( sscanf( params, "sssi", params[ 0 ], params[ 1 ], params[ 2 ], params[ 3 ] ) ) return SendClientMessage( playerid, COLOR_LIGHTBLUE , "Usage:{FFFFFF} /tryanim <library> <name> <speed 1.0-10.0> <loop 0/1>"); ApplyAnimation(playerid, params[ 0 ], params[ 1 ], params[ 2 ], params[ 3 ], 0, 0, 0, 0); // Sit return 1; }
I hope someone can help me point out my mistake.
Thankss