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

DJMaxus

Members
  • Posts

    403
  • Joined

  • Last visited

    Never

Posts posted by DJMaxus

  1. Looks pretty good man, very solid, but I'll make some suggestions that are purely optional, mostly leaning towards overclocking.

    If you're in to any sort of overclocking, or interested in the future, you may want to pick up the i5-3570k processor, and MSI's 7970 video card. The "k" processor is unlocked so you can push it as far as you can cool it, and MSI's 7970 is much better with its overclocking ability than Gigabyte. Speaking of cooling, if you wanted a better heatsink, check out the "Cooler Master Hyper 212 EVO" cooler, or if you wanted to try water cooling, you can't go wrong with the "H" series from Corsair like the "H80i" for instance. Also, the Samsung 830 is blazing fast, but the new Samsung 840 Pros have 90k IOPS for both random read and random write, but there's only about 50Mbp/s improvement in basic write speeds.

    Don't forget to order a wireless card if you're not gonna be hard-wired. ;)
  2. > so how can i transfer this over to EO? is it possible?

    Yes, look throught the tutorial and copy over everything having to do with gender (male and female constants). Since paperdolling is already present, you just have to tell the game to load a certain image based on gender.
  3. > true true, so many features of TE that were amazing and worked perfect… and yet people forget them (and request them later)
    >
    > btw as you may have guessed i made that feature =P

    I still remember when you were going to release your source edit of Eclipse with a house customization system and more but sadly I don't think it ever was. =/

    > well, perhaps somebody should rewrite it then for the "new"engines? ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/tongue.png)

    A good majority of them are out in source edits. Can't think of one that hasn't been remade.
  4. Nothing was wrong, it was just doing things the old way, and the majority of the community cut off older versions completely after they were comfortable with Origins. I'm sure people appreciate a lighter way of handling character customization that's more compatible with how today's Eclipse functions. ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/wink.png)
  5. > like the bank you cant get out after someime the npc's just wont die and other that i forgot becuse i havent bean using it.

    Hmm, I've never run into the bank issue before, and the NPCs seem to die just fine. This seems like one of the cleanest source edits available.

    GUI

    Since you're using EO, its nice to make a mockup in Photoshop or another image editing program. Once you have that, in VB6 you can set the frmMain's image to your mockup image and design accordingly, moving things where they should go and etc.
  6. In your server, in the sub PlayerAttackNpc

    Find this:

    ```
    ' send animation

    If n > 0 Then

    If Not overTime Then

    If spellNum = 0 Then Call SendAnimation(mapNum, Item(GetPlayerEquipment(attacker, Weapon)).Animation, MapNpc(mapNum).Npc(mapNpcNum).x, MapNpc(mapNum).Npc(mapNpcNum).y)

    End If

    End If
    ```

    Change it to this:

    ```
    ' send animation

    If n > 0 Then

    If Not overTime Then

    If spellnum = 0 Then

    Call SendAnimation(mapNum, Item(GetPlayerEquipment(Attacker, Weapon)).Animation, MapNpc(mapNum).NPC(mapNpcNum).x, MapNpc(mapNum).NPC(mapNpcNum).y)

    Else

    Call SendAnimation(mapNum, Spell(spellnum).SpellAnim, MapNpc(mapNum).NPC(mapNpcNum).x, MapNpc(mapNum).NPC(mapNpcNum).y)

    End If

    End If

    End If
    ```
×
×
  • Create New...