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. In each form and module, there is a drop down bar that says "(Declarations)"

    Clicking it shows all subs, and functions in the module/form. You can navigate each one by clicking it.
  2. @karpaz:

    > but i wanted dx8 not for only png files but for more .. ;) graphic .. fog .. more smoother game .. and more and more ;) but ok if you help me with dx7 origins i use this and love this :P

    You're approaching this all wrong. Having transparency, fogs, and a smoother looking game doesn't mean anyone will play it.

    Features don't make the game, you do.

    EO is just fine, and DX8 is a bit tough to understand especially if you're new to this. You can give CS:DE a try but I'm sure you'll find yourself back at using EO very quickly. People will help you if you show promise, and give them a reason to.
  3. @SolBadguy:

    > Yep big plan, but stupid plan,it's a waste of time  to upgrade it just to read png files

    Everything you said after that was not necessary at all.

    As for converting to DX8, it's not wise to convert it just to be able to read png files, as having DX8 will change a lot more than that. There are ways to have .png without all that work, just search on Google.
  4. For most of the UDTs, if you add a variable anywhere except at the bottom, you will have to delete all of the data and recreate it.

    For instance, adding Data4 and Data5 anywhere except the bottom to ItemRec, you will have to delete all of your item data in your server folder, and re-create it by starting up the server again.
  5. @Domino_:

    > For now there is only 2 item combination, to make more item combination I need add Data4, Data5 as example? I know its not only in one place where need to add but is that the best way to do this?

    That is one way of doing it, but I think the best way is to use an array.
    Example:
    ```
    Item(ItemNum).RecipeItem(Index)
    ```
  6. > Just here to provide an update, it's been quite a while. This screenshot should explain a bit:
    >
    > [![](http://macriss.net/worlds/screen.png)](http://macriss.net/worlds/screenshiot.png)
    >
    > The Skill System I mentioned in [this topic](http://orpgcreation.com/community/showthread.php?tid=75) is in the game and (almost) fully functioning. There is a max of 300 points to spend on learning skills, and you may train skills, untrain them, or lock skills to distribute your points the way you want. The numbers displayed next to each skill show the skill level, then the percentage of experience. "Skill Level/Experience%" All I have to do to complete this system is make it to where all skills are train-able, passive or otherwise, as of now only six are.
    >
    > If you look at the chat box, you can see that there is crafting in the game as well. Recipe's may contain up to five item combinations. How we're thinking about approaching this is you go to an anvil, table, or whatever, and you're able to use the recipe's you've collected to craft your item as opposed to being able to craft anywhere like my default system does.
    >
    > Expect to see more updates soon. :)
  7. [[quote author=soulsoldier2 link=topic=78248.msg838848#msg838848 date=1329433577]
    thanx but i can't find any skill making way  plz help :sad:

    I recommend you use both tutorials together for all of the skills you listed in the first post.
  8. @Dryath:

    > Okay first time trying to add something to the engine and a bit stuck, im using the latest eclipse from the download section 2.0
    >
    > On trying to compile the client i get variable not defined and it points to this line
    > Spell(1 To MAX_NPC_SPELLS) As Long
    >
    > On trying to compile the server i get this..
    >
    > Method or data member not found
    > And it points to
    > If Options.Debug = 1 Then On Error GoTo errorhandler
    >
    > Anyone can help ?
    >
    > Thanks

    Add this to your modConstants in your client
    ```
    ' NPC Spells
    Public Const MAX_NPC_SPELLS As Long = 5
    ```
    For the second issue, why is options.debug doing on the server in the first place? Delete it.
  9. http://www.touchofdeathforums.com/smf/index.php/topic,71740.0.html

    You will have to do some imaginative thinking, but that tutorial will get the job done right.
  10. Make sure your entire sprite sheet's dimensions are both a power of two.

    There aren't dynamic sprite calculations in CS:DE I don't think, so you will have to make changes to the way players are drawn in the source. You will also need to change how the name is drawn.
  11. @Fuu:

    > Adding skin tone wouldn't hurt.

    No it won't. Given the way characters and paperdoll are set up, it'd take a bit of time with graphics, as we would need multiple images for just one armor item. It's not something being focused on at the moment, but you may see it in the future most definitely.
×
×
  • Create New...