shubniggurath Posted April 10, 2011 Share Posted April 10, 2011 Hey ho. I have a scripting problem.I tried to let an actors weapon skill level "level" with the player weapon skills. I wrote the code below, tested it (ingame: console->click actor->type "getskill smallguns/bigguns/melee..."->hit enter) but nothing changed. Except the smallguns skill. Here is the code that i use: scn a01shubnpcweaponskillScript short stopme ;stop variable short a01shubsg ;stores smallguns skillshort a01shubbg ;stores bigguns skillshort a01shubex ;stores explosive skillshort a01shubme ;stores melee skillshort a01shubun ;stores unarmed skillshort a01shubsum ;stores the sum of all weapon skills begin onload if stopme == 0 ; This line should calculate the sum of all weapon related skills and multiplies it with 0.5; But it seems to just calculate the first skill (smallguns) set a01shubsum to player.getav smallguns + player.getav bigguns + player.getav explosives + player.getav meleeweapons + player.getav unarmed * 0.5 ; These lines store the sum of the actors weapon skill + the calculated player skill sum / 50 set a01shubsg to (getav smallguns + a01shubsum)set a01shubbg to (getav bigguns + a01shubsum)set a01shubex to (getav explosives + a01shubsum)set a01shubme to (getav meleeweapons + a01shubsum)set a01shubun to (getav unarmed + a01shubsum) ;And here i set the actors weapons skill to the calculated results setav smallguns a01shubsgsetav bigguns a01shubbgsetav explosives a01shubexsetav meleeweapons a01shubmesetav unarmed a01shubun set stopme to 1endifend Have you any idea what i did wrong?! I don't...Could you please help me? Link to comment Share on other sites More sharing options...
rickerhk Posted April 10, 2011 Share Posted April 10, 2011 You might try forcing order of operations this way: set a01shubsum to (((player.getav smallguns) + (player.getav bigguns) + (player.getav explosives) + (player.getav meleeweapons) + (player.getav unarmed)) * 0.5) If that doesn't work, you will have to break it up into smaller pieces. Link to comment Share on other sites More sharing options...
shubniggurath Posted April 14, 2011 Author Share Posted April 14, 2011 Thanks for your help!You have been Kudo'ed :-) Link to comment Share on other sites More sharing options...
Recommended Posts