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

Agoraphobic

Members
  • Posts

    1045
  • Joined

  • Last visited

    Never

Posts posted by Agoraphobic

  1. I'm currently in the middle of making a old school dungeon crawler and need a new GUI. The graphics are low end (Sprites are 32x32 (256 Color) ) so the GUI doesn't have to be much.

    All artwork,sprites,etc that I'm putting in the game were released by the authors for the public to use (no copyrighted material) and I need the GUI to not be copyrighted material as well (No GUI rips from games please).

    The main thing I need is for the 800x600.jpg needs to fit with the Diablo style HP and MP system.
    [![](http://www.freemmorpgmaker.com/files/imagehost/pics/74acca0605f89d31cacb0293e0d3c0b4.jpg)](http://www.freemmorpgmaker.com/files/imagehost/#74acca0605f89d31cacb0293e0d3c0b4.jpg)

    If anyone is feeling generous they can do the other files to match the 800x600.jpg I need.

    >! 800x600.jpg
    Bank.jpg
    CreatedGuild.jpg
    DeleteAccount.jpg
    FixItems.gif
    FlashTheatre.jpg
    IpConfig.jpg
    NewAccount.jpg
    Player Chat.jpg
    Trade.jpg
    Shop.gif
    login.jpg
    MainMenu.jpg
    CharacterSelect.jpg
    credits.jpg
    minimenus.jpg
    menustone.jpg

    Thank you for your time and if you have any questions just let me know.
  2. What about something like this? Can try pressing Pageup key and see if values are still incorrect. I'm reinstalling eclipse in a bit and I'll try and help.

    ```
    ' Executes when a hotkey is pressed client-side.
    Sub HotScript(Index, KeyID)
    Select Case KeyID
    ' Executes when any player presses the PageUp key.
    Case 1
    Call PlayerWarp(Index, GetPlayerMap(Index), GetPlayerX(Index), GetPlayerY(Index))
    Call BattleMsg(Index, "Refreshed" , BRIGHTBLUE, 0)

    Exit Sub

    ' Executes when any player presses the Delete key.
    Case 2

    ' Executes when players press the End key.
    Case 3

    ' Executes when players press the PageDown key.
    Case 4
    End Select
    End Sub

    ```
  3. ```

    ' Executes whenever a scripted NPC does an action.
    Sub ScriptedNPC(Index, Script)
    Select Case Script
    Case 0
    Call PlayerMsg(Index, "This scripted NPC has no apparent use.", WHITE)
    Exit Sub
                  Case 1
                  Call GoShopping(index, 1)
                  Exit Sub

    Case Else
    Call PlayerMsg(Index, "No NPC script found. Please contact an admin to solve this problem.", WHITE)
    Exit Sub
    End Select
    End Sub

    ```
    I haven't reinstalled eclipse yet after my hard drive crashed to test, however this should work as a scripted npc.
  4. Taking a 15 minute break from working on my rp game and found some funny things I wanted to share. Some of this might be old but is good to be nostalgic sometimes.

    http://www.youtube.com/watch?v=NZ20N6syuwc&feature=fvw
    [Hopefully I'm not the only one that has played chrono trigger and finds humor in this]

    http://www.youtube.com/watch?v=LCQSpzjHxpQ
    [Always brings a smile to my face]

    http://www.youtube.com/watch?v=0_fPV13lKm4
    [Just interesting.]
  5. Welcome to the forum.

    Here is the library files you need.
    http://www.freemmorpgmaker.com/LibraryFiles.zip

    Here is the engine.
    http://freemmorpgmaker.com/Eclipse-Evolution-2.8.zip

    If you have any problems be sure to check out the tutorial section here.
    http://www.touchofdeathforums.com/smf/index.php/board,34.0.html

    Thank you Crimson, I misread question I think. You give yourself admin and press F1 to bring up the map editor.
  6. In your server folder then scripts folder, open your main.txt in notepad.
    Hit Ctrl + F and type Sub DropItems(Index)

    ```
    ' Executes on death, dropping all of the players items.
    Sub DropItems(Index)
      ' Remove this to enable.
      Exit Sub

      If GetPlayerWeaponSlot(Index) > 0 Then
          Call PlayerMapDropItem(Index, GetPlayerWeaponSlot(Index), 0)
      End If

      If GetPlayerArmorSlot(Index) > 0 Then
          Call PlayerMapDropItem(Index, GetPlayerArmorSlot(Index), 0)
      End If

      If GetPlayerHelmetSlot(Index) > 0 Then
          Call PlayerMapDropItem(Index, GetPlayerHelmetSlot(Index), 0)
      End If

      If GetPlayerShieldSlot(Index) > 0 Then
          Call PlayerMapDropItem(Index, GetPlayerShieldSlot(Index), 0)
      End If

      If GetPlayerLegsSlot(Index) > 0 Then
          Call PlayerMapDropItem(Index, GetPlayerLegsSlot(Index), 0)
      End If

      If GetPlayerRingSlot(Index) > 0 Then
          Call PlayerMapDropItem(Index, GetPlayerRingSlot(Index), 0)
      End If

      If GetPlayerNecklaceSlot(Index) > 0 Then
          Call PlayerMapDropItem(Index, GetPlayerNecklaceSlot(Index), 0)
      End If
    End Sub

    ```
    This line of code controls if you drop all your items upon death or not.
  7. Welcome to the forums sam! Creating a project that isn't similiar to anyones would be best in my opinion. Both projects would be compared against each other and creating a project unlike any that is seen will make your game stand out more.
  8. What I really like about this project is you didn't rip super nintendo graphics to create a MMO, but instead actually created zelda themed sprites. I think the game is showing a lot of promise and am looking forward to try it out.
  9. What is everyone's thoughts on blizzard trying to have everyone register at battlenet and merge their WoW account to it. So 1 universal login for all their games.
    Lots of people seem to have been having issues or don't want to merge because the possibility of their bnet account getting hacked and them having access to all their games.
  10. Welcome to the Forums!  You first have to make yourself an admin.
    http://www.touchofdeathforums.com/smf/index.php/topic,36390.msg343082/topicseen.html#new

    This is a very well written tutorial with pictures to help.
  11. Welcome to the forum! There are several tutorials to help you located here. http://www.touchofdeathforums.com/smf/index.php?board=34.0

    Here is a very good one that has pictures.
    http://www.touchofdeathforums.com/smf/index.php?topic=26187.0
×
×
  • Create New...