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!

start position for new chars

Newbie Spellweaver
Joined
Aug 1, 2014
Messages
14
Reaction score
0
i disabled both Samarkand and Constantinople and by default new Euro chars spawn at Constantinople how can i make default start Position at Jangan​
 
Joined
Feb 27, 2013
Messages
1,430
Reaction score
201
You can find it on _AddNewChar Stored Producer in (SRO_VT_SHARD) database, Then search for
Code:
INSERT INTO _Char (RefObjID, CharName16, Scale, Strength, Intellect, LatestRegion,PosX, PosY, PosZ, AppointedTeleport, InventorySize,      
                LastLogout, CurLevel, MaxLevel, RemainGold, RemainStatPoint, RemainSkillPoint, HP, MP, JobLvl_Trader, JobLvl_Hunter, JobLvl_Robber, WorldID)      
    VALUES (@RefCharID, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Name, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Scale, 20, 20, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]RegionID, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]Pos_X, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]Pos_Y, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]Pos_Z, @[I][B][URL="http://forum.ragezone.com/members/466734.html"]Default[/URL][/B][/I]Teleport, 45,      
                GetDate(), 1, 1, 0, 0, 0, 200,200, 1, 1, 1, 1)

Replace it with this
Code:
INSERT INTO _Char (RefObjID, CharName16, Scale, Strength, Intellect, LatestRegion,PosX, PosY, PosZ, AppointedTeleport, InventorySize,      
                LastLogout, CurLevel, MaxLevel, RemainGold, RemainStatPoint, RemainSkillPoint, HP, MP, JobLvl_Trader, JobLvl_Hunter, JobLvl_Robber, WorldID)      
    VALUES (@RefCharID, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Name, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Scale, 20, 20, [COLOR=#ff0000]25000[/COLOR], [COLOR=#ff0000]982[/COLOR], [COLOR=#ff0000]-0.421872[/COLOR], [COLOR=#ff0000]140[/COLOR], @[I][B][URL="http://forum.ragezone.com/members/466734.html"]Default[/URL][/B][/I]Teleport, 45,      
                GetDate(), 1, 1, 0, 0, 0, 200,200, 1, 1, 1, 1)
The red lines It's Jangan position.

Like if helped.
 
Last edited:
Upvote 0
Initiate Mage
Joined
May 27, 2023
Messages
4
Reaction score
0
You can find it on _AddNewChar Stored Producer in (SRO_VT_SHARD) database, Then search for
Code:
INSERT INTO _Char (RefObjID, CharName16, Scale, Strength, Intellect, LatestRegion,PosX, PosY, PosZ, AppointedTeleport, InventorySize,     
                LastLogout, CurLevel, MaxLevel, RemainGold, RemainStatPoint, RemainSkillPoint, HP, MP, JobLvl_Trader, JobLvl_Hunter, JobLvl_Robber, WorldID)     
    VALUES (@RefCharID, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Name, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Scale, 20, 20, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]RegionID, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]Pos_X, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]Pos_Y, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]Pos_Z, @[I][B][URL="http://forum.ragezone.com/members/466734.html"]Default[/URL][/B][/I]Teleport, 45,     
                GetDate(), 1, 1, 0, 0, 0, 200,200, 1, 1, 1, 1)

Replace it with this
Code:
INSERT INTO _Char (RefObjID, CharName16, Scale, Strength, Intellect, LatestRegion,PosX, PosY, PosZ, AppointedTeleport, InventorySize,     
                LastLogout, CurLevel, MaxLevel, RemainGold, RemainStatPoint, RemainSkillPoint, HP, MP, JobLvl_Trader, JobLvl_Hunter, JobLvl_Robber, WorldID)     
    VALUES (@RefCharID, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Name, @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]Scale, 20, 20, [COLOR=#ff0000]25000[/COLOR], [COLOR=#ff0000]982[/COLOR], [COLOR=#ff0000]-0.421872[/COLOR], [COLOR=#ff0000]140[/COLOR], @[I][B][URL="http://forum.ragezone.com/members/466734.html"]Default[/URL][/B][/I]Teleport, 45,     
                GetDate(), 1, 1, 0, 0, 0, 200,200, 1, 1, 1, 1)
The red lines It's Jangan position.

Like if helped.
Confirm it worked, tnx for share
Should change from @DefaultTeleport to 2094 when user used return scroll.
 
Upvote 0
Back
Top