Search found 23 matches

by CyberWizard2261
Tue Mar 31, 2020 11:28 am
Forum: Modding discussion
Topic: problem with LuaTechnology.level
Replies: 5
Views: 1635

Re: problem with LuaTechnology.level

thanks, picklock now I can make a code to circumvent this problem, but I still think this kind of unintuitive feature deserves a better explanation
by CyberWizard2261
Mon Mar 30, 2020 8:33 pm
Forum: Modding discussion
Topic: problem with LuaTechnology.level
Replies: 5
Views: 1635

Re: problem with LuaTechnology.level

I'm sorry but if you consider this vague sentence an explanation I think there's something wrong with you
by CyberWizard2261
Mon Mar 30, 2020 7:38 pm
Forum: Modding discussion
Topic: problem with LuaTechnology.level
Replies: 5
Views: 1635

problem with LuaTechnology.level

in techs with multiple levels, LuaTechnology.level is showing level + 1 except when level = max level
Am I missing something? Is it a bug? If this is the normal behavior I think it should be explained in the documentation since it's unintuitive
by CyberWizard2261
Fri Mar 27, 2020 2:47 pm
Forum: Modding help
Topic: rotatable rectangular entity
Replies: 1
Views: 698

rotatable rectangular entity

I made a 3x2 assembler to make hydrogen from heat, it should be peaceable like a heat exchanger but the game always places it in weird positions I made a hack to avoid this (made it placeable off-grid, made a heat-boiler fake entity and replace the fake for the true one using code) but I'd like to d...
by CyberWizard2261
Mon Apr 29, 2019 9:07 pm
Forum: Modding interface requests
Topic: Allow inserters to take from burnt_result_inventory
Replies: 2
Views: 1093

Re: Allow inserters to take from burnt_result_inventory

I have the same problem: I made furnaces that use hydrogen bottles as fuel and the inserters just don't take the used bottles from the used fuel inventory I really would like to solve this problem without a runtime script
by CyberWizard2261
Sat Sep 01, 2018 4:18 pm
Forum: Modding help
Topic: Help with making an entity non-rotateble
Replies: 4
Views: 1690

Re: Help with making an entity non-rotateble

try

flags = {"player-creation","placeable-neutral", "not-rotatable"}
by CyberWizard2261
Thu Jul 26, 2018 1:13 pm
Forum: Modding help
Topic: tertiary power assembling machine
Replies: 0
Views: 567

tertiary power assembling machine

I made an extremely power hungry assembling machine and set it to tertiary power so it would work using only if the factory has enough energy for other processes It works, it uses only excess energy from the factory, but when paired with accumulators some weird things happen: The accumulators don't ...
by CyberWizard2261
Wed Jul 25, 2018 12:38 pm
Forum: Implemented mod requests
Topic: Target temperature for heat energy source
Replies: 6
Views: 2284

Re: Target temperature for heat energy source

Thanks, Klonan
I just can't wait to make heat-factories
by CyberWizard2261
Tue Jul 24, 2018 4:37 pm
Forum: Implemented mod requests
Topic: Target temperature for heat energy source
Replies: 6
Views: 2284

Re: Target temperature for heat energy source

The way it is now furnaces and assembling machines can work using heat energy source just like heat exchangers I made a heat-furnace but it starts working as soon as the temperature rises above 15C and this far from realistic With a target temperature in the energy source, we can make realistic proc...
by CyberWizard2261
Tue Jul 24, 2018 1:47 pm
Forum: Implemented mod requests
Topic: Target temperature for heat energy source
Replies: 6
Views: 2284

Target temperature for heat energy source

I'd like to see more entities using heat energy source (not only boilers), but most heat processes require a temperature much above 15C to work in real life I'm planning to produce hydrogen via pyrolysis at 800C, and I'm quite sure other modders will think in creative ways to use heat too I'd really...
by CyberWizard2261
Tue Jul 24, 2018 12:48 pm
Forum: Modding help
Topic: How to make a custom arithmetic/decider combinator?
Replies: 4
Views: 2257

Re: How to make a custom arithmetic/decider combinator?

I don't recommend modify data.raw table, it's better to make your entity apart from vanilla ones, you'll have much more freedom with the definitions Vanilla combinators have too much code written in C for performance reasons, make combinator logic in LUA is not recommended unless it's really critica...
by CyberWizard2261
Sun Jul 22, 2018 1:10 pm
Forum: Ideas and Requests For Mods
Topic: [Request] AWACS Plane
Replies: 5
Views: 1738

Re: [Request] AWACS Plane

You didn't say anything about outrun enemies, and the Warden was not created to be used alone... You should use AAI Chaingunners or Laser Tanks as an escort, just make them follow you with AAI's remote control (click on yourself) and you can run controlling a single vehicle while the group smashes a...
by CyberWizard2261
Fri Jul 20, 2018 6:09 pm
Forum: Ideas and Requests For Mods
Topic: [Request] AWACS Plane
Replies: 5
Views: 1738

Re: [Request] AWACS Plane

AAI vehicles warden is a car with a radar and few other support roles, it reveals a bit more than normal radar permanent coverage and has a reasonable speed
by CyberWizard2261
Fri Jul 20, 2018 5:58 pm
Forum: Modding help
Topic: heat energy source
Replies: 0
Views: 530

heat energy source

I'm trying to make a "salt evaporation pond" powered by my heat solar panels and for this, I used a furnace with heat energy source and it works! As soon as the temperature rises above 15C it starts working. Problem: I wanted it to start working at 40C, does anyone know if heat energy sour...
by CyberWizard2261
Thu Jul 19, 2018 12:32 am
Forum: Modding interface requests
Topic: R/W temps of reactors, etc or R/W consumption,burner.efficie
Replies: 4
Views: 1433

Re: R/W temps of reactors, etc or R/W consumption,burner.efficie

I stumbled upon the same problem: I made heat accumulators based on heat pipes and wanted to make them keep the same temperature when replaced by an upgrade The problem is: I set the entity's temperature in the on_built_entity event but this event only fires few ticks AFTER the entity is built, time...
by CyberWizard2261
Wed Jul 18, 2018 2:40 am
Forum: Modding help
Topic: Ghost constant combinator
Replies: 2
Views: 1053

Re: Ghost constant combinator

you can get the signals the same way you do with a normal combinator:

ghost_control = ghost_entity.get_or_create_control_behavior()
signal = ghost_control.get_signal(number)
by CyberWizard2261
Mon Jul 16, 2018 3:43 pm
Forum: Modding help
Topic: {solved}showing signals on a hiden entity
Replies: 2
Views: 980

Re: showing signals on a hiden entity

eradicator wrote: So how about using on_selected_entity_changed to set it to what you want every time it changes?
It worked! It executes 2-3 times per second but it works

Thanks again eradicator
by CyberWizard2261
Sun Jul 15, 2018 12:14 pm
Forum: Modding help
Topic: {solved}showing signals on a hiden entity
Replies: 2
Views: 980

{solved}showing signals on a hiden entity

For my mod "power combinator" I want to show the circuit signals in an invisible entity to the player I tried to set player.selected = entity to simulate the player hovering the mouse over the entity but this only sets the selected entity for a few milliseconds. Does anyone know a way to d...
by CyberWizard2261
Wed Jul 11, 2018 5:56 pm
Forum: Modding help
Topic: charging the player a variable number of items
Replies: 1
Views: 703

charging the player a variable number of items

I have an entity and I want it to charge the player a variable number of items when it is built from a blueprint I know I can remove items directly from the player's inventory or from the player's logistics chests but I don't feel this is the right way to do it I also tried to set " ghost_entit...
by CyberWizard2261
Tue Jul 03, 2018 7:04 pm
Forum: Modding help
Topic: blueprint scrip created entity
Replies: 8
Views: 2632

Re: blueprint scrip created entity

thanks for that! My error was in not creating items for my poles I wished I learned that before

Go to advanced search