Jump to content

Scripted autoleveling skills question


shubniggurath

Recommended Posts

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 skill

short a01shubbg ;stores bigguns skill

short a01shubex ;stores explosive skill

short a01shubme ;stores melee skill

short a01shubun ;stores unarmed skill

short 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 a01shubsg

setav bigguns a01shubbg

setav explosives a01shubex

setav meleeweapons a01shubme

setav unarmed a01shubun

 

set stopme to 1

endif

end

 

 

 

 

Have you any idea what i did wrong?!

 

I don't...

Could you please help me?

Link to comment
Share on other sites

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...