From a couple days ago, necropolis is in but I haven’t run into any in this current world gen. Maybe it didn’t generate one and thats why I get the error? If thats the case I don’t know why it would spit me out to the main menu.
Got it working, something is fucky with my energy weapon stuff for somereason but whatever.
Love the destroyed damaged buildings. Could use more variety in the graffitti. Is there any way to disable those lua callbacks? Made a character and had to wait till daytime to check things out and just get spammed with lua callbacks.
Really excited about this, how can I add more to the graffitti?
StatsThroughSkills mod shipped with the game is working good. Is you version of the game compiled with lua support?[/quote]
That is the basic stats through skills which I don’t think uses lua. Basically the reason I don’t use that mod is as soon as stats update and if you start out with 0 skills then al your starting stats are dropped whereas stats through skills 2 I know doesn’t do that.
[quote=“RipRoarinBoogerPenis, post:9, topic:14081”]Got it working, something is fucky with my energy weapon stuff for somereason but whatever.
Love the destroyed damaged buildings. Could use more variety in the graffitti. Is there any way to disable those lua callbacks? Made a character and had to wait till daytime to check things out and just get spammed with lua callbacks.
Really excited about this, how can I add more to the graffitti?[/quote]
Graffiti strings are defined in the “\data\mods\ZSLua_DegradeBuildings\lua\MapGen.lua”. Search for this code and add more strings as necessary:
function MapGen.RandomGraffitiString ()
local strings = {
"LUA rules!",
"LOOTED",
"X",
"muh fukaz!",
"Beware of Zeds",
"Hello, Kitty!",
"* unreadable symbols *",
"<color_ltred>PRAY!</color>",
"<color_red>PRAY AND SPRAY!</color>"
}
Lua callbacks are defined in “\data\mods\ZSLua_DegradeBuildings\main.lua”. They should be disabled in the NoLog version,s or either try use that version, remove callback functions or comment Log statements like this:
function MOD.on_new_player_created()
--Log.Message("ZSLua_DegradeBuildings: main.lua: callback: on_new_player_created", true)
end
function MOD.on_skill_increased()
--Log.Message("ZSLua_DegradeBuildings: main.lua: callback: on_skill_increased", true)
end
function MOD.on_minute_passed()
--Log.Message("ZSLua_DegradeBuildings: main.lua: callback: on_minute_passed", true)
end
function MOD.on_day_passed()
--Log.Message("ZSLua_DegradeBuildings: main.lua: callback: on_day_passed", true)
end
You can also omit second parameter of the function or set it to nil/false.
StatsThroughSkills mod shipped with the game is working good. Is you version of the game compiled with lua support?[/quote]
That is the basic stats through skills which I don’t think uses lua. Basically the reason I don’t use that mod is as soon as stats update and if you start out with 0 skills then al your starting stats are dropped whereas stats through skills 2 I know doesn’t do that.[/quote]
StatsThroughSkills shipped with the game uses lua. Somewhere in the future it will be recoded in c++, but that’s not yet true for today.
[quote=“Decipher4096, post:13, topic:14081”]Hey, I have a problem with this mod. I have experimental 6675 and when the game generates the world, I have this error:
I installed the non-log version.
I don’t want to start the game without this mod, so I’ll wait patiently for help :)[/quote]
Please download once again (same link). There was missing comment hyphen in Mapgen.lua.
Hey there, I’ve been having an issue starting a new game when the game tries to generate the map with this game loaded. For some reason, the forums won’t allow me to post links or attachments, so the next best thing is to provide a description of the error.
On the DEBUG line of the error, there is a message regarding an invalid overmap terrain flag “ALLOW_OVERRIDE”.
The function line states: bool main_menu::new_character_tab()
File is src/main_menu.cpp
Line 614
[quote=“fallout2077, post:15, topic:14081”]Hey there, I’ve been having an issue starting a new game when the game tries to generate the map with this game loaded. For some reason, the forums won’t allow me to post links or attachments, so the next best thing is to provide a description of the error.
On the DEBUG line of the error, there is a message regarding an invalid overmap terrain flag “ALLOW_OVERRIDE”.
The function line states: bool main_menu::new_character_tab()
File is src/main_menu.cpp
Line 614[/quote]
Should be fixed in new V1 version.