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

Starryguy

Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Starryguy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. So you want more items and stuff like that. Well this is the tutorial for you. You will need: * Visual Basic 6 * Go to modConstances in client and find this code. It is about halve way through the page. ``` ' General constants Public Const MAX_PLAYERS As Long = 70 Public Const MAX_ITEMS As Long = 255 Public Const MAX_NPCS As Long = 255 Public Const MAX_ANIMATIONS As Long = 255 Public Const MAX_INV As Long = 35 Public Const MAX_MAP_ITEMS As Long = 255 Public Const MAX_MAP_NPCS As Long = 30 Public Const MAX_SHOPS As Long = 50 Public Const MAX_PLAYER_SPELLS As Long = 35 Public Const MAX_SPELLS As Long = 255 Public Const MAX_TRADES As Long = 30 Public Const MAX_RESOURCES As Long = 100 Public Const MAX_LEVELS As Long = 100 Public Const MAX_BANK As Long = 99 Public Const MAX_HOTBAR As Long = 12 Public Const MAX_PARTYS As Long = 35 Public Const MAX_PARTY_MEMBERS As Long = 4 ```* Change the numbers to the amount you want and **COPY IT!!!*** Now go to the server code and find modConstants and past the code over this``` ' General constants Public Const MAX_PLAYERS As Long = 70 Public Const MAX_ITEMS As Long = 255 Public Const MAX_NPCS As Long = 255 Public Const MAX_ANIMATIONS As Long = 255 Public Const MAX_INV As Long = 35 Public Const MAX_MAP_ITEMS As Long = 255 Public Const MAX_MAP_NPCS As Long = 30 Public Const MAX_SHOPS As Long = 50 Public Const MAX_PLAYER_SPELLS As Long = 35 Public Const MAX_SPELLS As Long = 255 Public Const MAX_TRADES As Long = 30 Public Const MAX_RESOURCES As Long = 100 Public Const MAX_LEVELS As Long = 100 Public Const MAX_BANK As Long = 99 Public Const MAX_HOTBAR As Long = 12 Public Const MAX_PARTYS As Long = 35 Public Const MAX_PARTY_MEMBERS As Long = 4 ```:cheesy: You just changed the number of things there are in the game :cheesy:
×
×
  • Create New...