Hallo everybody
i tryed to start with the moding tutorial, but i got one issue i made the it till step 4. After that the game shows me the error ( No such node ( energy_per_hitpoint).
What want me the error to tell can somebody help me ?
If more informations are needed np.
Thank you for your help.
Problem with Moding Tutorial
-
- Manual Inserter
- Posts: 3
- Joined: Fri Jul 10, 2015 6:16 pm
- Contact:
Re: Problem with Moding Tutorial
You should always tell us the error you're having.
Like, what LOC is this occurring?
Like, what LOC is this occurring?
-
- Manual Inserter
- Posts: 3
- Joined: Fri Jul 10, 2015 6:16 pm
- Contact:
Re: Problem with Moding Tutorial
The Error is at the start. Error Message: Error while loading entity prototype "bomber" (car): No such node (energy_per_hit_point) Modifications:BomberTutorial
This is the complete error message at the loadscreen.
Or what do you mean with LOC ?
This is the complete error message at the loadscreen.
Or what do you mean with LOC ?
-
- Fast Inserter
- Posts: 157
- Joined: Fri Jun 26, 2015 11:13 pm
Re: Problem with Moding Tutorial
Look in the base entity ($FACTORIO/data/base/prototypes/entity/entities.lua) and look for the car entity prototype. It should have something like:Pioofmusik wrote:The Error is at the start. Error Message: Error while loading entity prototype "bomber" (car): No such node (energy_per_hit_point) Modifications:BomberTutorial
This is the complete error message at the loadscreen.
Or what do you mean with LOC ?
Code: Select all
energy_per_hit_point = 1,
Make sure that you only have the comma at the end if it's preceding another attribute.
-
- Manual Inserter
- Posts: 3
- Joined: Fri Jul 10, 2015 6:16 pm
- Contact:
Re: Problem with Moding Tutorial
Thank you im searching the diverences and add them.