The default behavior is start point AND save point are set to this config:
// Starting point for new characters
// Format: <map_name>,<x>,<y>
start_point: new_1-1,53,111
Just to clarify: you want new chars to start in one place (poring map), but save point to be prontera,151,179 ?Using savepoint like Emistry suggested, this is what you would do:
1. set the start_point config in conf/char_athena.conf#L99 to the Poring map
start_point: prt_fild00,150,1502. create a script that triggers when they login for the first time(the script will set their save point to prontera,151,179
Here is an example:
prt_fild00,150,150,0 script Change_Save 139,1,1,{
OnTouch:
if (Class==Job_Novice && BaseExp==0 && BaseLevel==1) {
savepoint "prontera",151,179;
set BaseExp,1; // (no need to create a new variable)
}
end;
}