New planet implanted but something is wrong

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
Hello. Maybe you can support this.
I added a new planet "Hoth" and it works nice ,even its weather.
But i got a new problems with older planets implanted, like Taanab. Now this planet works but when you try to make a waypoint /way doesn't work, adding a strange waypoint with null name planet in the datapad.
I tried to add it to the new crc planet .iff but still fails. Anyone know anything about this issue?.
Thank you in advance.
 

Lasko

Moderator
Staff member
Moderator
Joined
Feb 13, 2012
Messages
295
Sounds like a string file issue.

Check any new string files you added, have the entries for taanab in them.

planet_n.stf maybe?
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
Yes i did. I updated the planet_n.stf and zone_n.stf but it was ok.
That wasn't the problem
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
That's fixed. There was some bad line in crc planet. But now... i got a new problem. Another added planet is missing its Starport travel point "Jakku". Now  you cannot travel to that planet because it's impossible to pruchase  a ticket.
I checked the planet_manager and its planet .ws but i didn't find the problem.
It's very strange because the starport is operative. The shuttle is leaving and arriving as normal.
Anyone know why is happening this now?. Where can i find the possible file which is getting me mad??
Thank you.
 

drdax

Member
Joined
Jun 11, 2015
Messages
133
I found my errors relating to travel was in the planet_manager file ( server side ). Look at a core planet for the examples of the starport / shuttle syntax.
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
I didn't change its planet_manage file (jakku starport), just for the new planet (hoth starport). I cannot understand why another planet is getting error to use the travel system after modifying my core3 adding a new planet. Hoth is working but i lost Jakku. What's wrong?
 

gyrantol

Member
Joined
Jan 16, 2015
Messages
127
check your travel.iff lists both planets. if one is missing you can't buy a ticket. Also check make sure both planets are entered into UI_ticketpurchse.inc
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
Yes i did. Travel.iff is ok and ui_ticketpurchase.inc aswell. Planet_manager has the right waypoint for its starport. So i dont know what's happening.
 

gyrantol

Member
Joined
Jan 16, 2015
Messages
127
Aeryna said:
Yes i did. Travel.iff is ok and ui_ticketpurchase.inc aswell. Planet_manager has the right waypoint for its starport. So i dont know what's happening.
With travel.iff as well make sure that the names are all lowercase. i put a capital at the start of mine and that messed it up.

If that fails try deleting the objects database. I would recommend taking a backup copy just in case you need to roll it back.
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
interesting. I'll test when i can and back. Thank you Gyrantol.
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
Travel.iff is ok.
I didn't try to delete anything yet.

The problem was fixed but i got a new one. You can travel to another planet using ticket, right, but now i'm getting wrong travel points when i try to make a shuttle travel in a same planet. You cannot select a same planet starport/shuttle. System doesn't let you choose .

Planet_manager is ok:
interplanetarytravel is 1, and incomingtravel is 1.

Everything is ok. I don't know why i'm having this issue now. I'm quite lost.
 

drdax

Member
Joined
Jun 11, 2015
Messages
133
95% of my issues are typos. I know you have most likey looked at your code, but try again. Maybe post the entire file?
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
PHP:
...

tutorial = {
	weatherEnabled = 0,
	gcwEnabled = 0,
}

dungeon1 = {
	weatherEnabled = 0,
	gcwEnabled = 0,
}



chandrila = {
  weatherEnabled = 1,
  gcwEnabled = 1,

  planetTravelPoints = {
    {name = "Hanna City Spaceport", x = 179, z = 6, y = -2958, interplanetaryTravelAllowed = 1, incomingTravelAllowed = 1},
    {name = "Nayli Outpost", x = -5272, z = 18, y = 264, interplanetaryTravelAllowed = 1, incomingTravelAllowed = 1},
    },
}


jakku = {

		weatherEnabled = 1,
		gcwEnabled = 1,

		planetTravelPoints = {
	{name = "Jakku's Starport", x = 4223, z = 9.75, y = -5142, interplanetaryTravelAllowed = 1, incomingTravelAllowed = 1},
	},
}


hoth = {
  weatherEnabled = 1,
  gcwEnabled = 1,

  planetTravelPoints = {
    {name = "Hoth Starport", x = 0, z = 0, y = -2000, interplanetaryTravelAllowed = 1, incomingTravelAllowed = 1},
    },
}
 
Top Bottom