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

Savents

Members
  • Posts

    71
  • Joined

  • Last visited

    Never

Posts posted by Savents

  1. > It was changed because it's a pointless system if both icons are the same. Which they are in most cases. Changing it back would require you to look at how 2.0 did it and just figure out how to work that math into any newer versions though.

    It was still a nice system, it allowed you to have an inventory image, like a more detailed version of the dropped item, oh well I guess, I always thought more options where good, and not pointless, sure it required one extra copy and paste, but it was nice for that one option.

    Thanks.
  2. Loving the new version, I mite actually use this to make my game, have been just waiting around working on sprites/the graphics end of things until an eclipse engine came out with what I needed and then just modify that to my needs, this seems really well done I like the new admin panel.

    I was wondering if you where going to add in the collapse-able chat much you have in EA, it's a nicer sleek look.

    ~cheers on the good work, keep it up can't wait to see where this one goes.
  3. **Eclipse Advanced v3.0.15**

    I am not sure about other versions, I am testing with this one for now.

    When you apply a sound effect to an animation, it does not play that sound

    When you make a heal skill/spell the healing does not get applied instantly but only when you take damage from some source
  4. > I will make option for increased movement speed maybe

    That's fine I guess, should have just kept it in there it was a nice feature, at least it helped me a lot for mapping on larger maps.

    Also the removing the collision is not very helpful as it was needed to test and make sure your blocks are in the right spots, maybe make a toggle for that.

    Just trying to help out as I would like to use EA as my main engine when it's 100% done so I figure that giving lots of feed back is helpful.
  5. [bug] I am currently using **Eclipse Advanced v3.0.16** so I am not sure if this streaches accross all versions or not but when you drop any ammout of curency you're unable to pick it back up and any item you drop after that is also unable to be picked up, you have to restart the client to be able to pick up droped items from your character again.
  6. It would be really nice if CS:DE had a bank.

    Strange how it doesn't, seems like something that would be stock.

    Edit: Never mind I found it, wow, how did I not even check for that..

    /sigh How do I move the bank window around in the gui, I can find everything else in the interface.ini but there's no bank window.
  7. Is its affected by base stats? for example, I am a warrior with 5STR 5END 5AGI at level 1, just starting the game, I play up to level 30, and messed something up along the way in my stat build, I use a stat reset potion, do you go back to your base stats? or does everything get reset back to 0.
  8. @Rithy58:

    > I lied. That was my fault. I forgot I edited my EO. Anyway, there isn't any Picturebox for each Equip.
    > However, here are the places where you can go look at the code and you'll understand :
    > modDirectDraw7, search for Sub BltEquipment
    > modConstants, search for ' Character consts
    > Maybe also code in frmMain, search for Private Function IsEqItem
    >
    > Sincerely,
    > Rithy

    Yup, thanks a lot, figured out how to move them into place, I just have to change the order some how, to "weapon, shield, armor, helm" I think it's some where in the modDirectDraw but I am not 100% sure as I am new to coding, more of a graphics guy.
  9. @Rithy58:

    > Well, that's where they are. I found them easily, just move the picCharacter up and there they are. Everything is in that Picturebox, nothing missing.
    >
    > Sincerely,
    > Rithy

    Yeah, I don't know, is there something that could be causing them to not show up? they are there well ingame. what is the name of them in proprieties?
    Thanks for the help on this, I know it's a stupid issue.
  10. @GKO:

    > Its becuase they dont exist except on the gui which you can edit with paint, photoshop etc.

    I already knew that… hence the custom GUI?

    @Savints:

    > On your character sheet, where it shows your stats, name, level, ect, there are four slots to display what weapon armor, shield and helm you currently have on. I have looked though almost everywhere and I can't find where this is in the code, it's on the character PIC I just can't find them, I need to adjust them to fit my GUI, does anyone know where they are located?

    Yeah I looked all over picCharacter clicked like a mad man! I can't find them.
  11. On your character sheet, where it shows your stats, name, level, ect, there are four slots to display what weapon armor, shield and helm you currently have on. I have looked though almost everywhere and I can't find where this is in the code, it's on the character PIC I just can't find them, I need to adjust them to fit my GUI, does anyone know where they are located?
  12. I am using this with the options menu, works great I like the way it is displayed beside your characters name rather then on top, I just added  a very tiny edit so your level is shown "Player [1]" if any one wants that here it is, all credits are still given to OP.

    you just replace
    ```
    Name = Trim$(Player(Index).Name) & " Lv" & GetPlayerLevel(Index)
    ```with
    ```
    Name = Trim$(Player(Index).Name) & " [" & GetPlayerLevel(Index) & "]"
    ```
×
×
  • Create New...