-
Content Count
1,902 -
Joined
-
Last Visited
-
Most Liked
12
Content Type
Profiles
Forums
Omnibus
News
Features
Downloads
City Journals
Calendar
Gallery
Everything posted by Ulisse Wolf
-
Custom Queries for Custom Buildings
Ulisse Wolf replied to Kel9509's topic in SC4 Modding - Open Discussion
I'm not a fan of Maxis Goofy Stats because their values are too fictitious and not in line with the city's development. With the LUA code, I managed to obtain Box-Muller transformation with a standard deviation, allowing me to have fictitious values in line with the city's growth. If you need the LUA script, here is the code used to calculate the number of prostitutes in the city for the CAM Casino expansion. function game.cam_get_prostitute() local mean = game.g_city_r_population / 100 local std_dev = mean * 0.25 local u1 = math.random() local u2 = math.random() local z = math.sqrt(-2 * math.log(u1)) * math.cos(2 * math.pi * u2) local civilian_count = math.floor(math.max(0, z * std_dev + mean) + 0.5) return civilian_count end -
SimCity 4 Deluxe for Windows 11
Ulisse Wolf replied to daderic888's topic in SC4 Bugs & Technical Issues
Follow this tutorial- 72 Replies
-
- 1
-
-
Got a quick SC4 question?... Ask here!
Ulisse Wolf replied to City_Slider's topic in SimCity 4 General Discussion
It's called NAM Lite. -
The JAVA installer version will be available when NAM 50 is released.
-
SC4Pac automatically installs it in the right place. It is not available on Simtropolis but on GitHub for the time being.
-
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
Strange. I use Windows 11 and haven't encountered any CTDs. -
Those who install NAM manually will still have to follow the standard installation and update procedure. Cleaners are not provided because they are now obsolete and are being transformed into tools for migrating to the SC4Pac system. The same thing happens if you upgrade to NAM 50: nothing changes in the cities, and the only thing that changes is the traffic, which has to be recalculated since the pathfinder has been modified.
-
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
No. GID is correct, while IID was incorrect because in the original version it was 0xd0e84BE4. In fact, the log showed that the LUA file could not find _constants.lua. By setting IID to 0x0431f16d, the system was able to load the table and did not generate the error where _constants.lua was not found. I assume that LUA files have specific IIDs because with some IIDs the game ignores these LUA files and does not load them. This happened to me several times when I tested the economic simulator for importing and exporting resources. Same thing with Ticket news -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
The crash issue is related to the fact that when LUA tables are generated for counting Occupant Groups, they must have an IID lower than 0x4a5e8f3f. The LUA file had an IID higher than this and caused crashes. The problem does not cause a crash on Windows systems, so the SC4 Lua Extensions log generates the error but the game continues to run normally. However, it appears that on Linux systems, the error causes the CTD. For UDI missions, a code reset command must be inserted before the mission code where a parameter has been modified. -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
CAM is pushing for regional development, so if you want to boost the city's development, you also need to develop the neighboring cities. -
- 10 Comments
-
- 1
-
-
- simcity 4
- colossus addon mod
-
(and 1 more)
Tagged with:
-
Meanwhile, work on rebuilding AMPS continues. After retrofitting the code, we are moving on to fixing the Maxis buildings, the additional buildings, and also the code as the power plants are ready. After this step, we will move on to fixing the UIs. There is still work to be done before a public version is released, but at least you can see the aesthetically improved version of the wind power plant already available with CAM Core 3.5.1.
- 24,771 Replies
-
- 7
-
-
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
Have you installed CAM in an already developed region? -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
Perfect. I have uploaded the corrections to versions 3.5.1 and 4032.0801 for CAM Core Experimental. It is already available for manual users, while SC4Pac users will have to wait a few days for the update. (Core Experimental is already available for download in SC4pac) -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
Try this version CAM_LUA_Controller.dat -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
The only change in the LUA Controller is the addition of the OG counter table. I encountered an error when loading a LUA script file because the IIDs for LUA files are particular. But this is the first time this error has caused a CTD on non-Windows systems. CAM_LUA_Controller.dat -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
I haven't encountered any problems on Windows, so it's difficult to diagnose the issue. If we want to solve the problem, then you need to test the CAM Core files individually to find the file that is causing the problem. -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
The only solution I can think of right now is to use hardware rendering (DirectX) if you are using software rendering. -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
If the crash occurs with an Automata, then CAM Core is not the cause because it does not contain automata mod. Have you installed any Automata mods? -
SimCity 4 crashes, removed plugins
Ulisse Wolf replied to durbancic's topic in SC4 Bugs & Technical Issues
If you have removed CAM Core, then it is normal to have more bugs, since CAM cannot function without CAM Core. So you need to reinstall CAM Core. If you have installed the Critical Fixes, then any possible CTD failures should be resolved. -
Don't forget to create the submenu for these lots and add them to the Airport Submenu.
-
System rebuild, some stuff not working
Ulisse Wolf replied to The Edge's topic in SimCity 4 General Discussion
Use SC4Pac to install NAM https://community.simtropolis.com/files/file/36700-sc4pac-mod-manager/ -
What do I need to make the game work in Windows 11?
Ulisse Wolf replied to SebiMaxis's topic in SC4 Bugs & Technical Issues
Follow this tutorial -
Black screen on start up, Steam Version.
Ulisse Wolf replied to ShibanShiva's topic in SC4 Bugs & Technical Issues
Follow this tutorial -
Custom Ordinance Exemplar Host DLL
Ulisse Wolf replied to Null 45's topic in SC4 Modding - Open Discussion
You don't need an IID range for ordinances, as you can simply use the IID generation function in Reader and Ilive Reader. Furthermore, the percentage of IID conflicts using the generator is extremely rare.
