Quote:
Originally Posted by JohnHeatz
Both things are pretty basic and you can certainly do it by yourself.
To make a server public, all you need to do is to change your local IP (127.0.0.1) to your actual public IP (can be found on whatsmyip.com) on every file that needs it, plus on the game.exe/updater.exe
|
this is acuret and exactly how to make a server public BUT asuming you dont have a static ip meaning your public ip changes every x amount of time then you will have to re edit the ip everytime your ip roles so 1 way around and cheapest yet not veary stable would be to use hamachie witch will never change the ip ( unless you remove hamachi from your computer and reinstall it again) sec option is a dedicated server witch can be quite costly.
Quote:
Originally Posted by JohnHeatz
To work with the drops all you need to do is go to PS_GameDefs.dbo.MobItems and update the drops; for example:
Code:
Use PS_GameDefs
Update dbo.MobItems set ItemID = [Item's_ID], DropRate = [%]
where MobID = [Mobs_ID] and ItemOrder = [Item_Order]
|
this is also acuret BUT mobitems works off of Grade not ItemID so you will need to go into your PS_GameDefs.dbo.Items tabel and locat witch items you want to drop from a sertaint mob and set the grade of those items to a UNUSED grade or use a already used grade asuming all items in that grade are what you want to drop use
Code:
SELECT * from PS_GameDefs.dbo.Items WHERE Grade = [what ever grade you are going to use]
that will give ALL items that use that perticuler grade then use john's quary above and substatute ItemID = [Item's ID] with Grade = [Item's Grade]