Page 2 of 5
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 04, 2015 2:51 pm
by darkshadow1809
FishSandwich wrote:Haha no worries, can't expect perfection every time.
And I don't mind testing this and helping squash bugs, because I want to see it working perfectly for the spotlight.
I have some questions/suggestions for you;
Do you plan to add other biter-type items? For example, an organic wall, an organic weapon with organic ammo(like the spitter)?
Well actually this works complimentary with cursed EXP
He provides the wall basically.
And later on I do want to have a weapon of alien sorts. However still figuring how to build them.
As you can see in the what i have planned for the future section. Theres alot more biter strains comming along
you can eventually make mechanical biters which will be my own addition to the mod. Then a friendly A.I for dytech & hardcorios biters
And can also create and set them to your hand. IF you have those mods installed
Probably gonna do the hardcorio "enemies" in myself so you dont HAVE TO install hardcorio
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 04, 2015 7:21 pm
by FishSandwich
Found a new one.
The Hive Controller item isn't craftable, you'd need to make it spawn in the player's inventory at some point, probably when they complete the research.
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 04, 2015 7:40 pm
by Klonan
FishSandwich wrote:Found a new one.
The Hive Controller item isn't craftable, you'd need to make it spawn in the player's inventory at some point, probably when they complete the research.
something like this is what you'd need
Code: Select all
game.onevent(defines.events.onresearchfinished , function(event)
if research.name == alien research whatever then
game.player.insert(name ="biter-copyright-notice", count = 1)
end
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 04, 2015 8:23 pm
by darkshadow1809
FishSandwich wrote:Found a new one.
The Hive Controller item isn't craftable, you'd need to make it spawn in the player's inventory at some point, probably when they complete the research.
Should be craftable.. Swear i added a recipe for that. Hold up!
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 04, 2015 8:34 pm
by FishSandwich
darkshadow1809 wrote:FishSandwich wrote:Found a new one.
The Hive Controller item isn't craftable, you'd need to make it spawn in the player's inventory at some point, probably when they complete the research.
Should be craftable.. Swear i added a recipe for that. Hold up!
Only the on/off is craftable, the item itself isn't.
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 04, 2015 9:18 pm
by darkshadow1809
FishSandwich wrote:darkshadow1809 wrote:FishSandwich wrote:Found a new one.
The Hive Controller item isn't craftable, you'd need to make it spawn in the player's inventory at some point, probably when they complete the research.
Should be craftable.. Swear i added a recipe for that. Hold up!
Only the on/off is craftable, the item itself isn't.
Mmh yeh.. I got a loop issue. I can't make a recipe that just requires one of the items.. not ALL to craft it.
Reason I don't want to add the code Klonan (Thanks for help though) Is if people die in multiplayer. They Wont recieve another hive controller. Unless theres some code for that?
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Tue May 05, 2015 5:16 am
by darkshadow1809
If anyone has a way to figure
feel free to mess with the code see what you can come up with to make both remotes craftable
& changeable.
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Tue May 05, 2015 5:59 pm
by FishSandwich
darkshadow1809 wrote:They Wont recieve another hive controller. Unless theres some code for that?
Take another look through my PvP mod.
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Tue May 05, 2015 10:57 pm
by darkshadow1809
FishSandwich wrote:darkshadow1809 wrote:They Wont recieve another hive controller. Unless theres some code for that?
Take another look through my PvP mod.
Will do
Sec
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Tue May 05, 2015 11:51 pm
by L0771
Sorry, my english is soo bad, but if i understand, you want other option from "give the control by research", i think can make the control crafteable.
1° Save the last state of every player
2° If the new state of control is different with the last state "or have 2 controls diferents", change state
3° Delete all controls without the new state and lets only 1 of this state
If you like it, tell me by skype.
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Wed May 06, 2015 2:31 am
by darkshadow1809
Ok figured it a bit
!
So first off I thought about some idea's that fish you in your code had and then what Klonan gave me as a code.
However I decided to do a bit of a change with the help of l0771
We did the following
1. We gave research at start to help on early game compliment the biter capsules to follow & guard you while your base might get attacked if you are playing with some mods that might make things harder.
2. We have three recipes now, One to craft and 2 to convert between the two
Hope you like the changes!
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Fri May 08, 2015 5:21 am
by lnguy3219
it would be the best for the ShadowMega
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Fri May 08, 2015 11:18 am
by darkshadow1809
lnguy3219 wrote:it would be the best for the ShadowMega
Tis already in there
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 11, 2015 3:51 am
by avogadro
This mod caused a multi-player error every so often and on save (which prevented saving) which we got from the Shadow ModPack.
We "fixed" it, but we really don't know what we're doing so take it with a grain of salt. The issue is in control.lua which references game.player
Code: Select all
game.onload(function()
if glob.evolution == nil then
glob.evolution = {}
end
if game.player.force.technologies["Hive-mind"].researched then
game.player.force.recipes["attractor-on2"].enabled = true
end
end)
Code: Select all
game.onload(function()
if glob.evolution == nil then
glob.evolution = {}
end
for i = 1, #game.players, 1 do
if game.players[i].force.technologies["Hive-mind"].researched then
game.players[i].force.recipes["attractor-on2"].enabled = true
end
end
end)
It now lets us save and doesn't cause an error, but we could've broken something about the mod for all we know.
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Mon May 11, 2015 9:45 am
by darkshadow1809
avogadro wrote:This mod caused a multi-player error every so often and on save (which prevented saving) which we got from the Shadow ModPack.
We "fixed" it, but we really don't know what we're doing so take it with a grain of salt. The issue is in control.lua which references game.player
Code: Select all
game.onload(function()
if glob.evolution == nil then
glob.evolution = {}
end
if game.player.force.technologies["Hive-mind"].researched then
game.player.force.recipes["attractor-on2"].enabled = true
end
end)
Code: Select all
game.onload(function()
if glob.evolution == nil then
glob.evolution = {}
end
for i = 1, #game.players, 1 do
if game.players[i].force.technologies["Hive-mind"].researched then
game.players[i].force.recipes["attractor-on2"].enabled = true
end
end
end)
It now lets us save and doesn't cause an error, but we could've broken something about the mod for all we know.
Don't see how that would break things
Thank you!
Will add it to the mod upcomming release
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Sat May 16, 2015 7:08 pm
by Koncookie
Is your mod compatible to existing games? Because I wanted to test your mod, but I couldn't find your new ore. Even after exploring for a long time.
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Sat May 16, 2015 7:10 pm
by darkshadow1809
Koncookie wrote:Is your mod compatible to existing games? Because I wanted to test your mod, but I couldn't find your new ore. Even after exploring for a long time.
Sorry buddy ore does only spawn on generation of a new map
Its with most mods I assume
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Sat May 16, 2015 8:55 pm
by orzelek
darkshadow1809 wrote:Koncookie wrote:Is your mod compatible to existing games? Because I wanted to test your mod, but I couldn't find your new ore. Even after exploring for a long time.
Sorry buddy ore does only spawn on generation of a new map
Its with most mods I assume
I think that by calling entity regeneration on ore you should be able to spawn it after adding mod to save.
That also reminds me that I'd need to add ore from this mod to RSO at some point
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Sun May 17, 2015 10:33 am
by Koncookie
orzelek wrote:I think that by calling entity regeneration on ore you should be able to spawn it after adding mod to save.
Got it working this way. I also modified one of Bobs migration scripts for a more convenient way to add the ressource in an existing game:
In "Evolution_1.0.4" I created a folder "migrations" and inside, the file "Evolution_1.0.4.lua":
Code: Select all
game.regenerateentity("alien-artifacts")
for i, player in ipairs(game.players) do
player.print("Added alien-artifacts to the map.")
end
Worked nicely with my singleplayer game. And should also works for multiplayer, but I can't assure this now.
darkshadow1809 wrote:Sorry buddy ore does only spawn on generation of a new map
Its with most mods I assume
Bob uses a lot of migration files, so it always worked instantly and I never had to use the console to get a new ore etc. ^^
Re: [0.11.22] Evolution | Alien Manipulation
Posted: Sun May 17, 2015 11:03 am
by Koncookie
For the researches I would suggest to change the cost to less items per cycle but more cycles.
For example the "Hive-Mind-V2" research needs 90 items (30-30-15-15) with a total of 100 cycles. Therefore my labs often don't run because the inserters aren't fast enough to prodvide this amount of items. I would suggest to change this to 2-2-1-1 and 1500 cycles. This would cost the same amount of items.