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

My issues with EO 1.2.0


Lavos
 Share

Recommended Posts

During Gameplay
-Sometimes the music will not start as I first log in.
-Sometimes I hear that the music has some missing frequency when i play it. Meaning I'm not hearing it as the same quality as when i'm play it from windows media player.

Npc Editor
-When you backspace 0 from exp value box you get an error. Its some sort of bad habit the I think most users have like me. I get annoyed by it when i forget it does that.

Item Editor
-Create an Item on the editor name it "test" then save. Then go back to Item editor then delete the name "test" then set the item as spell then save it. then try reopening it.
Link to comment
Share on other sites

@Lavos:

> During Gameplay
> -Sometimes the music will not start as I first log in.
>
> Npc Editor
> -When you backspace 0 from exp value box you get an error. Its some sort of bad habit the I think most users have like me. I get annoyed by it when I forget it does that.

Also have these problem, has nobody a fix, because these are really anoying issues
Link to comment
Share on other sites

Npc Editor:
```
Private Sub txtEXP_Change()
    ' If debug mode, handle error then exit out
    If Options.Debug = 1 Then On Error GoTo errorhandler

    If Not (txtEXP.text = vbNullString) Then
        If Not (IsNumeric(txtEXP.text)) Then
            MsgBox "Positive integers please!"
            Exit Sub
        End If
        Npc(EditorIndex).EXP = txtEXP.text
    Else
        Npc(EditorIndex).EXP = 0
    End If

    ' Error handler
    Exit Sub
errorhandler:
    HandleError "txtEXP_Change", "frmEditor_NPC", Err.Number, Err.Description, Err.Source, Err.HelpContext
    Err.Clear
    Exit Sub
End Sub

```
Item Editor:
Change attribute "min" of "scrlSpell" to "0".
Link to comment
Share on other sites

@Kamii:

> Npc Editor:
> ```
> Private Sub txtEXP_Change()
>     ' If debug mode, handle error then exit out
>     If Options.Debug = 1 Then On Error GoTo errorhandler
>    
>     If Not (txtEXP.text = vbNullString) Then
>         If Not (IsNumeric(txtEXP.text)) Then
>             MsgBox "Positive integers please!"
>             Exit Sub
>         End If
>         Npc(EditorIndex).EXP = txtEXP.text
>     Else
>         Npc(EditorIndex).EXP = 0
>     End If
>    
>     ' Error handler
>     Exit Sub
> errorhandler:
>     HandleError "txtEXP_Change", "frmEditor_NPC", Err.Number, Err.Description, Err.Source, Err.HelpContext
>     Err.Clear
>     Exit Sub
> End Sub
>
> ```
> Item Editor:
> Change attribute "min" of "scrlSpell" to "0".

You baffled me. Thanks it works nicely now.
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...