Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Hotbar Text


Zamin
 Share

Recommended Posts

Hello,

I have successfully modified the hot keys for spells from F1-F12 to numbers.

I need modify or add text for the hot keys. In each box for each hot key, I want to change the text from F1…to a different text. I can't seem to find where in the source

Any help would be greatly appreciated

Thanks
Link to comment
Share on other sites

```

' hotbar
        For i = 1 To 9 ' 1 to 9
            If KeyCode = 48 + i Then
                SendHotbarUse i
            End If
        Next

        ' hotbar keys
    Select Case KeyCode
        Case 48: ' 0
            SendHotbarUse 10
            Exit Sub
        Case 187: ' -
            SendHotbarUse 12
            Exit Sub
        Case 189: ' =
            SendHotbarUse 11
            Exit Sub
    End Select

```
Change it to whatever you want. 

You'll find this in FrmMain -> KeyUp
Link to comment
Share on other sites

Yes I understand, I've changed the hot keys to the ones I wanted to here.

Maybe I was unclear.

The hot keys have been modified.

What I need to do: Change the text F1-F12 to whatever I want. I included a pic, please take a look
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...