Mutants Rising is a highly anticipated mod that has been some ten years in the making. Two days ago .Pixote. posted a thread where he asks for help with the remaining scripting to be done. It must be finished! To inspire us he posted some beautiful screenshots of all the locations in the game. If you don't care for spoilers they are a must watch. The only thing left for Mutants Rising to be finished is some 300 scripts. The team behind the ambitious total conversion mod is seeking your help! If you are familiar with Fallout scripting and want to lend your hand you should get in contact with the team immediately. All the information you need can be found here.
I think the expression "Mutants Rising team wants you to finish their scripts" should be a little more friendly - "Needs help finishing their mod", can you change it please @Proletären. The reality is they would be assisting Ardent with scripting the last third of the game, approximately 320 scripts.
If I've learned anything about the fallout modding community this year, it is that if you let them put their weird fetish bullshit in your mod you'd have them lining up around the block.
Done. You should be made Mod of this forum the next time Hass gets here so you have permissions to do your job. @Hassknecht @Korin
I can't say, I'm out of my element regarding scripts, some are pretty small, others are real doozies. But it's the glue that holds everything together, shitty scripting = shitty game. At least with the tools they use nowadays if a script has a problem the compiler will find it. Spoiler: Small Script /* Script from map templete */ /* Groom Lake West map script GROwest.map by Ardent */ /* Include Files */ #include "..\headers\define.h" #include "..\headers\command.h" #define NAME SCRIPT_GROOMM2 #include "..\headers\UPDATMAP.H" #include "..\headers\GROwest.H" #include "..\headers\MR\Location\GroomLake.h" procedure start; procedure map_exit_p_proc; procedure map_enter_p_proc; procedure map_update_p_proc; /****************** MACROS AND OTHER DEFS *******************/ /****************** VARIABLES *******************/ export variable captains_door_ptr; export variable hastings_ptr; export variable intercom_float; export variable ffield01; export variable ffield02; procedure start begin end procedure map_enter_p_proc begin if ((global_var(GVAR_GROOM_MURRAY_STATUS) == GROOM_StatusVal_Murray_Arrested) or (global_var(GVAR_GROOM_MURRAY_STATUS) == GROOM_StatusVal_Billie_Arrested)) then begin //Teleport Dude directly to Bask's office override_map_start_hex(20107,0,5); //tile, elev, rot end else begin display_msg(mstr(100)); override_map_start_hex(16438,0,3); //tile, elev, rot end end procedure map_update_p_proc begin Lighting; end procedure map_exit_p_proc begin mark_exit_bleeding end
I'm very tempted to sign up (again). What kind of scripting? Dialogues were one of the main ones back in the day.