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

Mellowz

Members
  • Posts

    379
  • Joined

  • Last visited

    Never

Posts posted by Mellowz

  1. http://www.freemmorpgmaker.com/status/index.php

    Doesn't provide custom online/ offline pictures, though. Might be able to get Wolf to update it to allow that. (-:
  2. The index is not declared because there's no parameter to the sub-routine or function that you're using.

    Here's an example sub-routine which changes both the player's HP and MP. Notice how it has a parameter.

    ```
    Public Sub Example(ByVal Index As Long)
    ' Sets the players current HP to the players max HP (server-side).
    Call SetPlayerVital(Index, Vitals.HP, GetPlayerMaxVital(Index, Vitals.HP))

    ' Inform the client about this change.
    Call SendVital(Index, Vitals.HP)

    ' Sets the players current MP to the players max MP (server-side).
    Call SetPlayerVital(Index, Vitals.MP, GetPlayerMaxVital(Index, Vitals.MP))

    ' Inform the client about this change.
    Call SendVital(Index, Vitals.MP)
    End Sub

    ```
  3. @Dami:

    > jezus christ…
    >
    > focking noob xd, its a base, your supposed to fill it on your own...
    >
    > ya know, like making your own game? not getting somebody else to make it for ya -.-
    >
    > Dami

    @Celsius:

    > Are you retarded?

    I think both of you need to calm down.
  4. @MikeyB2k9:

    > Who changed my display name from MikeyB2k9 to Professor X?
    >
    > I signed up to this forum with the name MikeyB2k9, therefore I want to use that name.
    >
    > I've noticed people in the chat complaining about their names being changed.
    >
    > Obviously its the work of a Mod on these forums.
    >
    > If you Moderate a forum you should not be changing peoples display names, it's childish and un-professional.
    >
    > I want an answer as to why my username was changed.
    >
    > And a good enough reason behind it.
    >
    > Not just "Cause i tought it wud be funneh"  :azn:
    >
    > … Really guys, all due respect this engines great! - There's some flaws, I must admit, but without it I wouldnt even know where to start to make an mmorpg.
    >
    > I love using this site, but I need to know that Mods wont be fishing around on my account whilst im using these forums.
    >
    > For the record, Mr X would be better  ;)
    >
    > Im no professor, they wear white coats... and we all know what they say about people in white coats...  :lipsrsealed:
    >
    > Regards,

    I looked at who did it and I'm going to talk to Marsh about it.
  5. Here's the fix for those of you who don't want to use the SVN.

    Open the server, then open frmServer.frm.

    ```
    Private Sub Command30_Click()
        Dim ClassNum As Long

        If FileExists("Editor.exe") Then
            ' We use Val() so we can catch empty results and strings, converting them to 0.
            ClassNum = Val(InputBox("Which class file would you like to open?", "Choose File", "0"))

            If FileExists("Classes\Class" & ClassNum & ".ini") Then
                Call Shell(App.Path & "\Editor.exe Classes\Class" & ClassNum & ".ini", vbNormalNoFocus)
            Else
                Call MsgBox("The file 'Classes\Class" & ClassNum & ".ini' could not be found.", vbOKOnly, "Error")
            End If
        Else
            Call MsgBox("The eclipse editor cannot be found!", vbOKOnly, "Error")
        End If
    End Sub

    ```
  6. This is a bug. Gonna fix it in the latest SVN.

    The edit button was originally designed to open the Classes\Info.txt file (which no longer is needed).

    I'll modify it to open class files instead.
×
×
  • Create New...