RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Resource icon

[2.x] Spell Bar BETA Ver. 4.5

No permission to download

zerodowned

Sorceror
zerodowned submitted a new resource:

Spell Bar (version BETA Ver. 4.5) - Spell hotbar

Why BETA?
This is stable and functional, but missing a lot of planned improvements. I'm submitting for people to try out and report any problems or make suggestions for improvements

What is it
A spell hot bar system similar to Djeryv: Spell toolbars. [ Link: http://www.runuo.com/community/threads/spell-toolbars.522805/ ]
I used his script as a base but expanded it to include all 7 types of magic: magery, necro, chiv, bushido,...

Read more about this resource...
 

zerodowned

Sorceror
Someone brought to my attention an issue causing the icons to lose position if you lock it while horizontal

In SpellBarGump, on line 2442 you'll see​
C#:
    this.AddPage(1);
             
             
           if ( m_Scroll.mSwitch == 0 )
           {
             dbx = 50; dbxa = 45; dby = 5; dbya = 0;
Those numbers are old and causing the problem. so change it to​
C#:
    this.AddPage(1);
             
             
           if ( m_Scroll.mSwitch == 0 )
           {
             //dbx = 50; dbxa = 45; dby = 5; dbya = 0;
             dbx = 67; dbxa = 45; dby = 5; dbya = 0;
 
Top