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

Nahchito

Members
  • Posts

    68
  • Joined

  • Last visited

    Never

Posts posted by Nahchito

  1. @Robin:

    > You screwed up the source code. Revert to a backup.

    But it happened the first time I edited the GUI, I didn't even touch the "important stuff". I have only editied GUI-related stuff.
    Maybe I touch something I the VB6 interface, just like the version number.

    **I made a mistake, the problem occurs whenever I log in, not when opening the game.**
  2. @Growlith1223:

    > You must have done something more like change the Client's revisions….Change them back to 1.3.0.0 It will fix that problem...If you are using CS:DE...I can't help you on that part XD

    I love you!

    Any clues on the Windows seven color scheme? EO 2.0 works fine, it started happening after i started editing
  3. Hi guys.
    So 've been source editing and I have to main problems:

    1-I can normally create an account, but whenever I try yo login, it says "Version outdated, visit http://blablablala".

    Why does this happen?!

    2-Whenever I open the game, my window's seven color scheme changes to Basic scheme (VERY annoying)

    I've only edited the GUI, no system editing.

    Any ideas?
  4. Yes, there is. But when you press "i" you would be typing "i" in the chat bar, so you'll need a fix for that too.

    ```

        If KeyCode = vbKeyI Then
    Call UpdateVisInv

        picGuildMember.Visible = False
        picGuildAdmin.Visible = False
        picEquipment.Visible = False
        picPlayerSpells.Visible = False

        picCharStatus.Visible = False
        picInventory.Visible = True
        End If

    ```
    Paste that in frm.mirage in the "Private Sub Form_KeyUp"
  5. Hello all. I was wondering if someone ever saw a tutorial on how to add the option "level requirement" for items. If so, i was asking if you could post it here or you could tell me how i can achieve that.
    thanks!
  6. This is my Sub

    ```
    ' Executes whenever a scripted NPC does an action.
    Sub ScriptedNPC(Index, Script)
    Select Case Script
    Case 1
    If GetPlayerLevel(index) > 24 then
    Call PlayerMsg(Index, "Adm.: Todavia no tengo la lista para crear Gremios!", WHITE)
    Else
    Call PlayerMsg(Index, "Adm.: Solo los guerreros con suficiente experiencia pueden hacer un Gremio!", WHITE)
    End if
    Exit Sub

    Case Else
    Call PlayerMsg(Index, "No NPC script found. Please contact an admin to solve this problem.", WHITE)
    Exit Sub
    End Select
    End Sub
    ```
  7. Hi guys, i spent the last 2 days trying to figure out how can i add the gold amount in the menu, like, under character or inventory.
    I'm checking in EO's source but i cant get it right.
    Any clues?
×
×
  • Create New...