Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Missing game.ini

Newbie Spellweaver
Joined
Jul 5, 2018
Messages
19
Reaction score
3
Hi everyone,

My question is farly simple. I've been using the last version of AfterLifeMMO that got release but i have noticed that there is no game.ini file when i run RSBuild.exe.
Now i could just add the game.ini from the older version that also got leaked but i was wondering if the file game.ini is actually created after compiling one of the Solutions.

If yes, which one? Because i have compiled all of them with success.
 
Joined
Apr 23, 2013
Messages
1,172
Reaction score
1,792
if you want to force something on the server before you build and send it, without having to compile the entire solution, just put it inside the ".ini" file and make it uncreative, so it is faster and more practical.Example: Make today's game come only in window mode, just add the X line and mark 1 or 0 to enable / disable and update.
Local.ini and Game.ini have only simples codes for VARS.H

Local.ini
Code:
r_allow_hw_shadows 0
r_bloom 0
r_default_draw_distance 1000
r_grass_anim_speed 0
r_grass_ssao 0
r_limit_fps 0
r_multithreading 1
r_optimize_shadow_map 0
r_shadows 0
r_shadow_blur 0
r_split_tree_render 0
r_ssao 0
r_tree_ssao 0
r_vsync_enabled 0

Game.ini
Code:
d_walk_speed_scale    5
d_sun_rotate         0
r_near_plane         0.5
r_far_plane         64000
r_cloud_lod_start     9000
r_cloud_lod_end     15000
 
Last edited:
Upvote 0
Back
Top