Jump to content

Singleplayer Weapons Select Screen


Nardja

Recommended Posts

@@Fire Phoenix

How do you removed the ingamewpnselect.menu hack from the sp maps academy2 to hoth2 ?
I've tried some code changes but wasnt able to solve it.
Everytime after the cutscene of academy2 i got the weapon select menu again. I want to play without these weapon choices and screens.
I managed to remove the menu for any other mission, but not for those who introduce a new story tier during the campaign.
The equipping of weapons during the playthrough is not important. But a Jedi/Sith should start only with a Lightsaber.

Is it a source code work (executable or direct link library) or a map function work in Editor?
I would be very grateful if you could tell me please how you realized that.

regards,
Nardja

Link to comment

okay so I looked in academy2 entities and there's an entity that gets you to that weapon menu:

 

 

{

"tier_storyinfo" "0"
"weapon_menu" "1"
"script_targetname" "end_level"
"targetname" "end_level"
"mapname" "+ingameWpnSelect"
"origin" "-1632 -1248 832"
"classname" "target_level_change"

}

 

 

try changing it to

 

 

{

"script_targetname" "end_level"
"targetname" "end_level"
"mapname" "hoth2"
"origin" "-1632 -1248 832"
"classname" "target_level_change"
}


and it should do the trick
 

 
Nardja likes this
Link to comment

 

okay so I looked in academy2 entities and there's an entity that gets you to that weapon menu:

 

 

{

"tier_storyinfo" "0"
"weapon_menu" "1"
"script_targetname" "end_level"
"targetname" "end_level"
"mapname" "+ingameWpnSelect"
"origin" "-1632 -1248 832"
"classname" "target_level_change"

}

 

 

try changing it to

 

 

{

"script_targetname" "end_level"
"targetname" "end_level"
"mapname" "hoth2"
"origin" "-1632 -1248 832"
"classname" "target_level_change"
}

and it should do the trick

 

 

 

Removing the first two lines will give a graphical glitch in cutscene and a cvar error in wpnselect menu

So it needs to be changed to

 

{

"tier_storyinfo" "0"

"weapon_menu" "0"

"script_targetname" "end_level"

"targetname" "end_level"

"mapname" "hoth2"

"origin" "-1632 -1248 832"

"classname" "target_level_change"

}

 

 

You are the first one with such a detail hint and the (maybe) only one who knows about sp in depth.

Thank you for help +hint.

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...