Thalassicus
Bytes and Nibblers
- Create a scenario map.
- Create a lua mod which prints the names of players who acquire technologies:
PHP:function NewTech(playerID, techID) local player = Players[playerID] print(tostring(playerID) .. " " .. tostring(techID)) print(tostring(player)) print(tostring(player.GetName)) print(tostring(player:GetName())) end Events.TechAcquired.Add(NewTech)
- Enable the mod.
- Start the scenario.
- When a citystate acquires a technology, the game crashes:
Code:8 1 table: 136B7B18 function: 135F82B0 Napoleon 9 1 table: 136B7BB8 function: 135F82B0 (crash to desktop)