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

Ruins of Hell

Members
  • Posts

    6715
  • Joined

  • Last visited

    Never

Posts posted by Ruins of Hell

  1. @kelspel:

    > ok so i did it and after waiting a while he got a error about this Sub TcpInit() (its highlited) any1 wonder why :/?
    >
    > Edit: It selects .socket and he does have a old computer with windows xp :/

    Make sure he has installed VB6 SP6 ([Step 3 of this guide](http://www.touchofdeathforums.com/smf2/index.php/topic,68399.msg736833.html#msg736833)).
  2. @yoshiboy:

    > Hello,
    >
    > It seems that system ideally for clans that are made by players.
    > I wish to assign new players the value for guild=none; when they spawn, and they can join npc-built guilds later in the game.

    In order to set the guild, just do:
    ```
    Player(index).Guild = "Guild Name"

    ```
    You'll have to decide where to put that though. If you need help, you can ask.
  3. The server has a function called "Function HasItem(ByVal index As Long, ByVal itemnum As Long) As Long". If the player has the item, the return value will be greater than 0\. You should make it so when the player gets an item (as well as when they log in), the server checks if the item number is 2\. If it is, the server can send the client a packet to show the cooking frame.
  4. Right, to start with your first question. In order to change the max number of items, do this.

    **Both client-side AND server-side, find this**:
    ```
    Public Const MAX_ITEMS As Long = 255

    ```
    and change the 255 to whatever you want. Then recompile.

    * * *

    The second part isn't as easy as the above, but it is pretty easy.

    Do this **both client-side and server-side**.

    Find:
    ```
        Add_Stat(1 To Stats.Stat_Count - 1) As Byte

    ```
    and change it to:
    ```
        Add_Stat(1 To Stats.Stat_Count - 1) As Integer

    ```
    Then find:
    ```
        Stat_Req(1 To Stats.Stat_Count - 1) As Byte

    ```
    and change it to:
    ```
        Stat_Req(1 To Stats.Stat_Count - 1) As Integer

    ```
    The next steps are client-side only.

    Next, go to frmEditor_Item. When ever you see +(Stat Name here) (like +Str, +End, +Agi) look at the scrollbar next to it and click it. Then go to the property window on the right and change Max (or Maximum, I forget) to 32767.

    Here's a picture if you don't get it.

    [Picture](http://www.freemmorpgmaker.com/files/imagehost/pics/21d4a3f694cab6ff82b76df633e129a1.png).
  5. Well, you'd have to rewrite the entire graphics engine to work with it, which isn't an easy task. I guess for some of them you could just make them an animation instead.
  6. @DarkBeast:

    > Ok it happened when I had my server on and I wasposting somestuff here on eclipse. Can someone help me cause I do know I have a rookit.Can someone tell me how to remove it. Also how would I know what the cause was?

    Go download [MalwareBytes](http://www.malwarebytes.org/mbam-download.php) and run it. We're not an anti-virus support team.
  7. @Captain:

    > Eclipse i open sorce so it's legal.

    Please stop it.

    @Wind_Devil:

    > It is already 60% complete. I just need to code the physic and it will be done in two week.
    >
    > May I ask, is it legal to claim the engine as my own since i ripped more than half the code from eclipse? :confused:

    [Refer to the Eclipse Licensing Agreement.](http://www.touchofdeathforums.com/smf2/index.php/topic,29732.0.html)
×
×
  • Create New...