No Character Logistic Slots?
-
- Manual Inserter
- Posts: 3
- Joined: Thu Nov 19, 2015 2:45 am
- Contact:
No Character Logistic Slots?
Hello, I have researched all the way to Character Logistic Slots 4, but I don't have any character logistic slots. Is it because I am in sandbox mode? Is there any way to fix this?
Re: No Character Logistic Slots?
Yes, you can only have character logistic slots if you have a character. If you create a character and attach your player to it, the slots will show up.monkeyballs1622 wrote:Hello, I have researched all the way to Character Logistic Slots 4, but I don't have any character logistic slots. Is it because I am in sandbox mode? Is there any way to fix this?
Code: Select all
/c game.local_player.character=game.local_player.surface.create_entity{name="player", position={0,0}, force="player"}
Automatic Belt (and pipe) Planner—Automate yet another aspect of constructing your factory!
-
- Manual Inserter
- Posts: 3
- Joined: Thu Nov 19, 2015 2:45 am
- Contact:
Re: No Character Logistic Slots?
Excellent! Thank you. This made all my inventory disappear, but that's ok. Is there now a way to revert back to "God mode"?Yes, you can only have character logistic slots if you have a character. If you create a character and attach your player to it, the slots will show up.
Code: Select all
/c game.local_player.character=game.local_player.surface.create_entity{name="player", position={0,0}, force="player"}
I prefer playing in sandbox just so I can move around easier and not have to deal with the character's range limitations for placing objects, but it would be nice to switch back and forth for playing around with things like weapons and character logistic slots.
Re: No Character Logistic Slots?
This will "leave" the player body and enable god mode (inventory stays with the body):
This will "reenter" the body and give you the inventory of the player back (highlight the player with the mouse and enter):
Code: Select all
/c game.player.character = nil
Code: Select all
/c game.player.character = game.player.selected
Re: No Character Logistic Slots?
Stand in a convenient location so you won't get eaten by biters, then run
To reattach to that character, point the mouse at it and run
The character will keep its inventory, but seems like you'll lose the godmode inventory on every switch, so put your stuff in a chest first.
... and daniel34 was faster this time.
Code: Select all
/c game.local_player.character=nil
Code: Select all
/c game.local_player.character=game.local_player.selected
... and daniel34 was faster this time.
Automatic Belt (and pipe) Planner—Automate yet another aspect of constructing your factory!
-
- Manual Inserter
- Posts: 3
- Joined: Thu Nov 19, 2015 2:45 am
- Contact:
Re: No Character Logistic Slots?
Yes!
Thank you to the both of you, exactly what I was looking for.
Thank you to the both of you, exactly what I was looking for.