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

Fixing the Custom Menu TxtBox Bug (Always saying '0')


the_best_flash
 Share

Recommended Posts

This is a very simple fix…

In the server, in modHandleData, inside Sub HandleData():

Find the line that says:
```
        Case "custommenuclick"
```
Just below this change the text "Val(Parse(5))" To "Parse(5)".

It was converting the text to a number. It is now fixed.

So now this line:
```
            Call Packet_CustomMenuClick(index, Val(Parse(1)), Val(Parse(2)), Parse(3), Val(Parse(4)), Val(Parse(5)))
```
Should look like this:
```
            Call Packet_CustomMenuClick(index, Val(Parse(1)), Val(Parse(2)), Parse(3), Val(Parse(4)), Parse(5))
```
Link to comment
Share on other sites

  • 3 months later...
  • 4 months later...

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...