Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How To Change TOP / PKO Birth Place

Joined
Nov 29, 2011
Messages
615
Reaction score
69
groupserver.cfg
Argent City =garner
Icicle Castle =darkblue
Shaitan City =magicsea


change to:
City #1 =map_city1_name
City #2 =map_city2_name
City #3 =map_city3_name


Ok so you just changed your GroupServer Birth Places.

Now Open Birth_conf.lua
Here you have all maps configuration:
AddBirthPoint("City #1", "map_city1_name", pos_x, pos_x)
AddBirthPoint("City #2", "map_city2_name", pos_x, pos_x)
AddBirthPoint("City #3", "map_city3_name", pos_x, pos_x)


City #n = the City you want to place your new character.
map_cityn_name = the map name in server files.
pos_x = coordinates on x-axis
pos_y = coordinates on y-axis

Ok the last thing you must do is changing client side birth place recognition.
Open stringset.txt and search for this:
[39] "Argent City"
[40] "Shaitan City"
[41] "Icicle Castle"
[42] "Select Argent City \n as starting town?"
[43] "Select Shaitan City \n as starting town?"
[44] "Select Icicle Castle \n as starting town?"

and change to:
[39] "City #1"
[40] "City #2"
[41] "City #3"
[42] "Select City #1 \n as starting town?"
[43] "Select City #2 \n as starting town?"
[44] "Select City #3 \n as starting town?"


Note: City #1 ... must be the same name as in groupserver.cfg and birth_conf.lua

After that, copy those 6 lines, compile them, and replace them in your stringset.bin.

Remember, if the txt line is [39] in bin you start from lin 40
 
Back
Top