kyosuke1000 Posted December 27, 2008 Share Posted December 27, 2008 well i was making a mod kind of a elfen lied invisible hands thing but i cant seem to figure out any way to make there be no attack animation it really kind of kills the whole idea if i have to swing my fists to make an invisible attack work i would also like to know if there is a way to keep my hands at my side as if nothing is equipped while i have it equipped Link to comment Share on other sites More sharing options...
GodofAlcohol Posted December 27, 2008 Share Posted December 27, 2008 maybe this will work?if(GetAnimAction == 2) SkipAnim endif http://geck.bethsoft.com/index.php/GetAnimActionhttp://cs.elderscrolls.com/constwiki/index.php/SkipAnim Link to comment Share on other sites More sharing options...
kyosuke1000 Posted December 28, 2008 Author Share Posted December 28, 2008 is there any chance you could tell me where i do that at? sorry i dont really know much generally all i do is make new weapons with textures and animations i already have whether there from mods ive downloaded or vanilla Link to comment Share on other sites More sharing options...
soulsquisher Posted December 28, 2008 Share Posted December 28, 2008 is there any chance you could tell me where i do that at? sorry i dont really know much generally all i do is make new weapons with textures and animations i already have whether there from mods ive downloaded or vanillaI'm guessing you could slap that anywhere in a script for the weapon you plan on making. Link to comment Share on other sites More sharing options...
kyosuke1000 Posted February 2, 2009 Author Share Posted February 2, 2009 i know i havent said anything for a while but i thought maybe i should ask if i did something wrong within my scripting this was the script i gave my fists scn FistSCRIPT begin onEquip player if GetAnimAction == 2 SkipAnimendifend but it still goes through with the full attack animation so i was wondering if you might know the problem? i tried it on a sword also same problem Link to comment Share on other sites More sharing options...
GodofAlcohol Posted February 2, 2009 Share Posted February 2, 2009 That doesn't work, because the animation is skipped when you equip the item... So try this, no guarantees though ;) scn FistSCRIPT begin gamemode if( GetEquipped YOUR_ITEM_ID_HERE && GetAnimAction == 2) SkipAnim endif end Hope it helps. Link to comment Share on other sites More sharing options...
kyosuke1000 Posted February 2, 2009 Author Share Posted February 2, 2009 thank you for all the help kudos for you it didnt work but ill keep trying various things thank you again for everything you have done Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.