I have not used it before but i took a look at it..
Call of Duty World at War\raw\maps\mak.gsc Contains "playeranimscriptevent" on line 7964 the following line:
Code Snippet
Plaintext
player playeranimscriptevent( "mak_bomb_stand" );
Call of Duty World at War\raw\mp\playeranim.script Contains "mak_bomb_stand" on line 2044:
Code Snippet
Plaintext
event mak_bomb_stand { both p_bomb_stand_loop }
p_bomb_stand_loop is a xanim in the raw/xanim folder
So think if you want use this, you hav to add the xanim name with the event name to playeranim.script include that in your mod. And in you gsc you can play the animation with:
Code Snippet
Plaintext
player playeranimscriptevent( EVENTNAME );
Last Edit: November 24, 2015, 04:07:20 pm by WhiteDevil
I have not used it before but i took a look at it..
Call of Duty World at War\raw\maps\mak.gsc Contains "playeranimscriptevent" on line 7964 the following line:
Code Snippet
Plaintext
player playeranimscriptevent( "mak_bomb_stand" );
Call of Duty World at War\raw\mp\playeranim.script Contains "mak_bomb_stand" on line 2044:
Code Snippet
Plaintext
event mak_bomb_stand { both p_bomb_stand_loop }
p_bomb_stand_loop is a xanim in the raw/xanim folder
So think if you want use this, you hav to add the xanim name with the event name to playeranim.script include that in your mod. And in you gsc you can play the animation with:
Code Snippet
Plaintext
player playeranimscriptevent( EVENTNAME );
yes i know how playeranim.script works. ive got to call it as a rawfile and add all animaitons i put in it to the proper place in multiplayer.atr but can i use these in loops using waittill( "done" ); like mak.gsc has? and can i recall it with a different event and make it override the current event anim? and can i play torso only anims and have the original event anim still playing on the legs?
yes i know how playeranim.script works. ive got to call it as a rawfile and add all animaitons i put in it to the proper place in multiplayer.atr but can i use these in loops using waittill( "done" ); like mak.gsc has? and can i recall it with a different event and make it override the current event anim? and can i play torso only anims and have the original event anim still playing on the legs?