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

eltony

Members
  • Posts

    309
  • Joined

  • Last visited

    Never

Posts posted by eltony

  1. umm well idk if youll like it… i mean green and black... dont go so well together but heres a couple.
    [![](http://www.freemmorpgmaker.com/files/imagehost/pics/3990f2391e45e7d279a18cee87deffc0.jpg)](http://www.freemmorpgmaker.com/files/imagehost/#3990f2391e45e7d279a18cee87deffc0.jpg)

    [![](http://www.freemmorpgmaker.com/files/imagehost/pics/6f1c8d9f4ea0de4cd0f4b51c87b85258.jpg)](http://www.freemmorpgmaker.com/files/imagehost/#6f1c8d9f4ea0de4cd0f4b51c87b85258.jpg)

    Next time ask in the Request forum.
  2. Well in in order to update some one has to click the auto-updater o.o just add the auto-updater its simple

    here is robins auto-updater: http://www.touchofdeathforums.com/smf2/index.php/topic,58493.0.html

    this is how to install it: http://www.touchofdeathforums.com/smf2/index.php/topic,70013.0.html

    This is Yami's updater its still robin's but modified by Yami: http://www.touchofdeathforums.com/smf2/index.php/topic,69267.0.html
  3. http://www.touchofdeathforums.com/smf/index.php/topic,76976.0.html

    Well i was adding this source to my project at very end i added the last thing which is this:

    in modDatabase

    Add this to the very bottom:

    ```
    Function GetPlayerSex(ByVal Index As Long) As Long
        ' If debug mode, handle error then exit out
        If Options.Debug = 1 Then On Error GoTo errorhandler

        If Index > MAX_PLAYERS Then Exit Function
        GetPlayerSex = Player(Index).Sex

        ' Error handler
        Exit Function
    errorhandler:
        HandleError "GetPlayerPK", "modDatabase", Err.Number, Err.Description, Err.Source, Err.HelpContext
        Err.Clear
        Exit Function
    End Function

    Sub SetPlayerSex(ByVal Index As Long, ByVal Sex As Long)
        ' If debug mode, handle error then exit out
        If Options.Debug = 1 Then On Error GoTo errorhandler

        If Index > MAX_PLAYERS Then Exit Sub
        Player(Index).Sex = Sex

        ' Error handler
        Exit Sub
    errorhandler:
        HandleError "SetPlayerPK", "modDatabase", Err.Number, Err.Description, Err.Source, Err.HelpContext
        Err.Clear
        Exit Sub
    End Sub
    ```
    so i did i added i try to compile and i get this error "Compile error: method or data member not found"
    so i debug it it and it takes me here.
×
×
  • Create New...