Official ScriptUO EasyUO Scripts > Scripting Chat

Comparing Skill Gains?

(1/1)

DeadIssue2:
I play on siege with the ROT system so every 5 min=a .1 gain.
So what I am trying to do is write a script that will use a skill and check to see if there is a .1 gain after the skill has been used and either try again or wait 5 minutes then get another gain. I have got a sub that will work the skill but I can not figure a way to compare the previous skill to the new skill.

Any help would be great.

TrailMyx:
Just make a note of your present skill before you use the skill:


--- Code: ---
set %temp_skill #SKILL
loop:
  (do something with that skill)
  if %temp_skill <> #SKILL
  {
    set %temp_skill #SKILL
    (wait 5 minutes)
  }
  goto loop

--- End code ---

Navigation

[0] Message Index

Go to full version