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

ER quests: problem solved on ER quest editor, now you can add more than 1 quest


Giukko
 Share

Recommended Posts

Just use Visual Basic 6 and find this piece of code inside "frmDev" "IstQuest": Private Sub lstQuest_Click()

delete that sub and paste this code:


```
Private Sub lstQuest_Click()
' If debug mode, handle error then exit out
If Options.Debug = 1 Then On Error GoTo ErrorHandler

QuestEditorInit

' Error handler
Exit Sub
ErrorHandler:
HandleError "lstQuest_Click", "frmEditor_Quest", Err.Number, Err.Description, Err.Source, Err.HelpContext
Err.Clear
Exit Sub
End Sub
```

That's it ;)
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...