looking for something to do,hence taking requests for mods,could be for any larger mod or vanilla game,or possibly for any mod(depends what it is),im being completely serious
Nirran
Nirran
Ravager69 said:Try to figure out slave drives. It would be caravans with slaves instead of brahmin carts. So it likes this - a group of a couple of slavers with human cattle leave from Den to Vault City and they can meet something on the road just like on a normal caravan drive.
QuantitizingQuibbleQuack said:Nirran said:yea,already agreed with chris,waiting on the files(for those that dont know,i am medicaly retired,bored last few days)
@Ravager69 looking for the script that controls the actual drive,brahman drive leader i looked at mearly sets a global,is it done by the engine?it could be scripted if it is,load map set world x/y etc
Nirran
I am medically retarded too. Which is why you ignored my request because you still have to hold time-slips hand to make the most basic of scripts. I truly hoped you would realize your own potential.
Those five arrows pointing up to your name are more likely COME HELP ME I AM NEWB symbols than proof you ever gave a damn enough to mod anything worthwhile into Fallout.
Ravager69 said:Try to figure out slave drives. It would be caravans with slaves instead of brahmin carts. So it likes this - a group of a couple of slavers with human cattle leave from Den to Vault City and they can meet something on the road just like on a normal caravan drive.
//these will be in the dialog script for player accepting dialog
procedure Node_Player_Agrees begin
variable choose;
choose := random(1,4);
set_global_var(GVAR_SLAVER_DRIVE, choose);
driver says
dude replies(Choose_Encounter);
procedure Choose_Encounter begin
if(global_var(GVAR_SLAVER_DRIVE) == 1)then begin
set_world_map_pos(int x, int y); //x and y from city.txt for example,will set worldmap location for player
load_map(encounter_map#,level_of_map);
end else if(global_var(GVAR_SLAVER_DRIVE) == 2)then begin
load_map(encounter_map#,level_of_map);
set_world_map_pos(int x, int y); //x and y from city.txt for example,will set worldmap location for player
load_map(encounter_map#,level_of_map);
end else etc.
end
//these will be in the slaver map script
procedure map_enter_p_proc
//lighting and whatnot
if(global_var(GVAR_SLAVER_DRIVE) == 1)then begin
mark_area_known(0, city#_of_the_encounter_map , -66); //sets the area unknown,that way the city circle isnt visable
override_map_start(hex#_for_encounter_one % 200, hex#_for_encounter_one / 200, map_level, dude_facing);
end else if(global_var(GVAR_SLAVER_DRIVE) == 2)then begin
mark_area_known(0, city#_of_the_encounter_map , -66); //sets the area unknown,that way the city circle isnt visable
override_map_start(hex#_for_encounter_two % 200, hex#_for_encounter_two / 200, map_level, dude_facing);
end else etc.
end
//for this one,you will have to set a map or global var when each enemy is killed(in the critter scripts)then if it is not 0,trigger this code,in the encounter map script
procedure map_exit_p_proc begin
if(map_var(MVAR_Dude_Killed_Counter) > 0) then begin
script_overrides;
//be easier if all the locations use the same global
if((global_var(GVAR_SLAVER_DRIVE) >= 1) and
(global_var(GVAR_SLAVER_DRIVE) <= 4) then begin//encounter map 1
load_map(/*map number the player chose the slave drive*/,level_of_map);
end else if(encounter map 2 etc,forum is cropping my code
end else begin
load_map(/*map number of destination*/,level_of_map);
end
ufo_hunter said:How about an inventory mod. Let me explain. A mod which would allow opening all your party members' inventories next to each other including your own and to be able to move stuff around directly from inventory to inventory. This way it would be easier to redistribute stuff around.
I think it is a pain in the ass to use barter from the dialog screen or to use steal on your followers when they try to keep a moderate/long distance.
I don't know if it would lead to exploits in quests though...
valcik said:Hi Nirran,
if you'll have a freetime, can you please look at the PA Helmetless mod, made by Josan12? Unfortunately, it's not compatible with latest Restoration Project and i'm pretty sure, so many of us will greatly appreciate, if someone make possible to run this mod along with RP.
http://www.nma-fallout.com/forum/viewtopic.php?p=776232#776232
There are included some sounds, which are colliding with default in-game 14mm pistol sound.![]()
valcik said:Damn, that was a lightning fast job!
Thank you very much, I'll test it with upcoming release of RP2.1.2 and will provide feedback (if necessary).
Michi said:Nirran,
I downloaded your Skill Books mod for RP 2.1.2, and they aren't working. The books show up, but when I try either using them on the player or using them (like the vanilla books) ... in both cases I get the message Nothing Happens and the book disappears from my inventory.
Thanks,
Michi