- Joined
- Oct 29, 2015
- Messages
- 410
- Reaction score
- 59
- First Language
- English
- Primarily Uses
It's been a long time since I originally set this up and I am trying to change the town names in the fast travel scene in game. I changed the names in the .js file (shown below) but there not changing in game, I tried refreshing the moghunter fast travel .js in the plugin menu in MV but still nothing is changing in game. Is there somewhere other than the area I posted below where the town names can be changed? Any advice would be appreciated, thanks.
Edit: Nevermind, I forgot you have to start a new game for changes to take effect.
Edit: Nevermind, I forgot you have to start a new game for changes to take effect.
Code:
//=============================================================================
// ** TOWNS
//=============================================================================
Moghunter.fastTravel_Towns[1] = {name:"Marksburg",x:265,y:235,mapID:13,mapX:12,mapY:18,direction:8};
Moghunter.fastTravel_Towns[2] = {name:"Hamil",x:444,y:900,mapID:14,mapX:11,mapY:2,direction:2};
Moghunter.fastTravel_Towns[3] = {name:"Nia Khera",x:1160,y:300,mapID:15,mapX:2,mapY:1,direction:2};
Moghunter.fastTravel_Towns[4] = {name:"Duval",x:1360,y:510,mapID:16,mapX:23,mapY:5,direction:4};
//=============================================================================
// ** DUNGEONS
//=============================================================================
Moghunter.fastTravelDungeons[1] = {name:"Taitalian",x:300,y:900,mapID:5,mapX:23,mapY:16,direction:4};
Moghunter.fastTravelDungeons[2] = {name:"Gandara",x:1430,y:590,mapID:6,mapX:23,mapY:4,direction:4};
Moghunter.fastTravelDungeons[3] = {name:"Kakhar Ice Caverns",x:1120,y:240,mapID:9,mapX:3,mapY:18,direction:8};
Moghunter.fastTravelDungeons[4] = {name:"Lobari Hollows",x:210,y:740,mapID:10,mapX:7,mapY:7,direction:2};
Moghunter.fastTravelDungeons[5] = {name:"Jaia",x:1180,y:910,mapID:11,mapX:3,mapY:1,direction:2};
Moghunter.fastTravelDungeons[6] = {name:"Fezebel Marsh",x:580,y:315,mapID:12,mapX:1,mapY:7,direction:6};
//=============================================================================
// ** OTHER
//=============================================================================
Moghunter.fastTravelOther[1] = {name:"Alice's Magic Shop",x:1110,y:690,mapID:17,mapX:8,mapY:11,direction:8};
Moghunter.fastTravelOther[2] = {name:"Gengi's Blacksmith Shop",x:450,y:320,mapID:18,mapX:15,mapY:7,direction:4};
Moghunter.fastTravelOther[3] = {name:"Battle Arena",x:825,y:560,mapID:19,mapX:7,mapY:11,direction:8};
Last edited: