MH-2001][

Tutorials and discussions about Mapping - Introduce your own ones!
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: MH-2001][

Post by OjitroC »

EvilGrins wrote: Mon Jun 28, 2021 8:31 am
Doesn't matter, I won't be able to hear it. I didn't get 469.
Another good reason to get 469 :P
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: MH-2001][

Post by EvilGrins »

OjitroC wrote: Mon Jun 28, 2021 4:21 pm
EvilGrins wrote: Mon Jun 28, 2021 8:31 am
Doesn't matter, I won't be able to hear it. I didn't get 469.
Another good reason to get 469 :P
I'm waiting for them to work all the bugs out first.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

Beta6:

- Better paths via portals for bots and monsters.

viewtopic.php?p=130258#p130258
Last edited by Buggie on Sun Jul 18, 2021 5:00 am, edited 1 time in total.
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

Beta7:

- fix weird bug which break redeemer on server until you not reboot server. :omfg:
- slightly improved text of messages for more players understand it.

viewtopic.php?p=130258#p130258
Last edited by Buggie on Sun Jul 18, 2021 5:01 am, edited 1 time in total.
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

Beta8:

- improved portals: less glitches, better work, fixed known bugs.

viewtopic.php?p=130258#p130258
Last edited by Buggie on Sun Jul 18, 2021 5:01 am, edited 1 time in total.
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

Beta9:

- improved portals.
- fixed gravity mismatch.
- cull unused textures.
- add arrows for more easy find proper way.

viewtopic.php?p=130258#p130258
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

Beta10:

- Improved portals:
* fix player movement through it.
* able see all projectiles.
* fix guide redemeer problems (but due cyclic nature of station you not able make full circle with rocket, It is normal).

viewtopic.php?p=130258#p130258
Eternity
Skilled
Posts: 166
Joined: Sat Nov 30, 2019 10:56 pm

Re: MH-2001][

Post by Eternity »

Should it be working properly with the Trace-based weapons?
Spoiler
A years ago i wondered about the Babylon space station theme map... Nice to see now something similar is already created.
It seemed impossible to implement it with this engine... Looks like the trick with portals is the only way to simulate the centrifugal gravitation effect...
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

No. Trace-based weapons not able goes for portals. And I very doubt about any possible fix via custom actor code.
Also portals not properly handle actors relevance. Possible because for that used trace which not pass over portals, so enemy on other side not relevant to you in network games and you not see it.
User avatar
sektor2111
Godlike
Posts: 6403
Joined: Sun May 09, 2010 6:15 pm
Location: On the roof.

Re: MH-2001][

Post by sektor2111 »

Suggested Fix wrote: Suggested fix:
Check there for cast to PlayerPawn:

case TT_PlayerProximity:
return PlayerPawn(Other)!=None && Pawn(Other).bIsPlayer;
Entirely disagree all blabbering concerning ONLY PLAYERPAWN. This is NOT a fix either for year 2021.
Maybe THIS

Code: Select all

case TT_PlayerProximity:
			return Pawn(Other)!=None && Pawn(Other).PlayerReplicationInfo != None && Pawn(Other).bIsPlayer;
What it needs is a FULL check for any sort of VALID player, Human, Bot, Botz, NPCBot, Etc Bot.

In other hand maybe a trooper closer to XXI century would be like this (admins of MH servers...). A conformed stock aiming Monster Gaming would be more entertaining this way:

Code: Select all

auto state Startup
{
	function BeginState()
	{
		Super.BeginState();
/*
	A sack of insanity - we don't even know if weapon won't be replaced and it goes NONE leaving Pawn bIsplayer to make a mess
		bIsPlayer = true; // temporarily, till have weapon
*/
		if ( WeaponType != None )
		{
/*
	NOT YET !!
			bIsPlayer = true;
*/
			myWeapon = Spawn(WeaponType);
			if ( myWeapon != None )
				myWeapon.ReSpawnTime = 0.0;
		}
	}

	function SetHome()
	{
		Super.SetHome();
		if ( myWeapon != None )
		{
			bIsPlayer = True; //only if I do have myWeapon
// or		AddInventory(myWeapon);
//else execute codes below
			myWeapon.Enable('Touch'); //It won't hurt anything
			myWeapon.Touch(self);
		}
		else
		{
//			whatever weapon finding method or leaving a ServerActor to polish things after execution of ReplaceWith craps
		}
	}
}
This might include iterating closer actors and if a weapon is found prepare bIsPlayer to True and "Touch" that thing. A master piece would be a Sleep(0.00) before calling SetHome in Auto State of ScriptedPawn. This is doable in stock 436-451 by using normal files addressing Monster Gaming.
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

Stop derailing topic. You want say something for github - write on github.
User avatar
sektor2111
Godlike
Posts: 6403
Joined: Sun May 09, 2010 6:15 pm
Location: On the roof.

Re: MH-2001][

Post by sektor2111 »

GitHub is not accepting my Browser and I did not derailed anything. It was about Troopers and what they do.
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: MH-2001][

Post by Buggie »

v12

- Improved paths.
- mark keypoints with assault flags.
- fix shuttle movement.
- a lot other fixes.

Updated at first post: viewtopic.php?f=5&t=14690
User avatar
Barbie
Godlike
Posts: 2792
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: MH-2001][

Post by Barbie »

Buggie wrote: Thu May 12, 2022 2:44 pm v12
Map is impossible to end: when flying away with shuttle (AttachMover0), players inside die after some seconds.
Attachments
BUG_MH-2001_all_dead_in_shuttle (0).jpg
BUG_MH-2001_all_dead_in_shuttle (0).jpg (49.48 KiB) Viewed 422 times
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
Post Reply