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

Draco.exe

Members
  • Posts

    260
  • Joined

  • Last visited

    Never

Posts posted by Draco.exe

  1. like i said before, this engine doesn't have mouse movement and diagonal movements, if you want to add that to the engine, go ahead, both should work with this engine ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/smile.png)
  2. this version doesn't have mouse movement or 8 directional movement, and about the resolutions, i decided that that three resolutions will be the best for the most of the people who use the engine, but anyways is not too much difficult to add new resolutions (just find the tutorial of GodWar in the source tutorials and test). The "problem" is that you need to create new images for every new resolution that you add.
  3. mmmm don't know why that is happening to you, maybe you should update your video card drivers, DirectX, and try another version of Eclipse like Nightly Eclipse or the one of Rob Janes (this two are Dx8 versions)

    And Rizz, what do you want to do? delete the commands for the pets?
  4. If someone need it, here's a mirror for the Libraries ONLY (i don't have the original Engine): [http://www.mediafire…186klkgqojhw9qr](http://www.mediafire.com/?186klkgqojhw9qr)

    and in my Alatar's Quest system for dx8 (update of the dx7 version) there is the Nightly Eclipse with the Quest system itegrated…and maybe you can undo all the tutorial and se if you have a "vanilla version" of Nighlty Eclipse: [http://www.touchofde…est-system-v12/](http://www.touchofdeathforums.com/community/index.php?/topic/127841-eo-dx8-alatars-quest-system-v12/)

    good luck! ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/wink.png)
  5. you need to edit in visual basic. Go to frm_main and look for the pet frame (called fra_pet i think), there you can edit the text. NOTE: if you move something, you need to place that to his original position after you finished with the editions (or you will have some problems with the resolution changing)
  6. you can check for the versions that Alatar and I uploaded with the Quest system only

    Alatar's Quest system (original and in dx7): http://www.touchofdeathforums.com/community/index.php?/topic/117080-eo-alatars-quest-system-v12/

    Alatar's Quest system (modified by me to fit with dx8 and event system): http://www.touchofdeathforums.com/community/index.php?/topic/127841-eo-dx8-alatars-quest-system-v12/

    in both pages there's a link to download the game with the quest system already integrated.

    good luck!
  7. thanks for reporting the broken link, here you can download the library files (this is the same installer that have Nightly Eclipse): [http://www.mediafire…186klkgqojhw9qr](http://www.mediafire.com/?186klkgqojhw9qr)

    added the link to the first message.
  8. you installed the libraries?

    if you already installed them, do this: go to start–->run and there paste this: regsvr32 C:\Windows\system32\dx8vb.dll

    (with this step you're going to register the .dll)

    that should fix it
  9. hmmm, my game worked with this engine well and the players can change the maps without problems and they can interact with others too…you edited something of the engine? (added some features?)...maybe there's an event that's causing problems with changing the maps.

    > Edit: Is that new GUI part of the next update?

    that GUI is of the old buggy version of Dragon Eclipse (the dx7 version) and actually i dont know if i'm going to re-edit the gui like that with the resolution changer for a better gui
  10. you need to to this:

    under **ComboResolution.AddItem "800x600"** add any resolutions you want. eg: **ComboResolution.AddItem "1024x768"**

    and then look for **ElseIf (ComboResolution.ListIndex = 2) Then**, you need to copy and paste all the code before end if, then change the number after ".ListIndex = " and change all the numbers that are after the "+" and the frmMain.Width and frmMain.Height

    eg: i want to add a new resolution: 960x768

    under

    ```

    ComboResolution.AddItem "800x600"

    ```

    add

    ```

    ComboResolution.AddItem "960x768"

    ```

    then, under

    ```

    ElseIf (ComboResolution.ListIndex = 2) Then

    picHotbar.Top = 399 + 216

    picEventChat.Top = 442 + 216

    txtMyChat.Top = 565 + 216

    txtChat.Top = 442 + 216

    frmMain.Width = 16665

    frmMain.Height = 12570

    OptGlo.Top = 565 + 216

    OptMap.Top = 565 + 216

    ```

    add

    ```

    ElseIf (ComboResolution.ListIndex = 3) Then

    picHotbar.Top = 399 + 384

    picEventChat.Top = 442 + 384

    txtMyChat.Top = 565 + 384

    txtChat.Top = 442 + 384

    frmMain.Width = 18975

    frmMain.Height = 15080

    OptGlo.Top = 565 + 384

    OptMap.Top = 565 + 384

    ```

    and that's it, you have a new resolution! i hope this can help you ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/wink.png)
×
×
  • Create New...