Kriegsland : Blutorden 2.4 (Z-Surprise page 40!)

Projects that alter game functions but do not include new maps belong here.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.
JohnnyTheWolf
Posts: 1162
Joined: Mon Oct 05, 2015 8:37 am

Re: Kriegsland : Blutorden 2.4 (Z-Surprise page 40!)

Post by JohnnyTheWolf »

Ac!d wrote:
JohnnyTheWolf wrote:Could you increase the tics for the weapon zoom in this one as well? It feels way too sensitive.
De rien ! :3:

Re-Download the mod, I increase the tics for the weapon zoom to 2 instead of 1.
Still too sensitive, I am afraid. :(

Could you raise the tics to 10 like you did with Kriegsland II? Maybe that will do it.
User avatar
Ac!d
Posts: 347
Joined: Tue Apr 02, 2019 5:13 am
Location: France

Re: Kriegsland : Blutorden 2.4 (Z-Surprise page 40!)

Post by Ac!d »

The problem is that if I increase the tics, the lines of code used for the weapon movement (A_SetAngle and A_SetPitch) won't be useful.

This is the original code:

Code: Select all

	NULL A 0 A_StartSound("FKPlayer/breath",6,1,True);
	W2ZG A 2 A_WeaponReady(WRF_ALLOWZOOM|WRF_NOSECONDARY);
	NULL A 0 A_SetAngle(Angle-FRandom(-0.12,0.12));
	NULL A 0 A_SetPitch(Pitch-FRandom(-0.12,0.12));
	W2ZG A 2 A_WeaponReady(WRF_ALLOWZOOM|WRF_NOSECONDARY);
	NULL A 0 A_SetAngle(Angle+FRandom(-0.12,0.12));
	NULL A 0 A_SetPitch(Pitch+FRandom(-0.12,0.12));
I can make a change like this one :

Code: Select all

	NULL A 0 A_StartSound("FKPlayer/breath",6,1,True);
	W2ZG A 2 A_WeaponReady(WRF_ALLOWZOOM|WRF_NOSECONDARY);
	NULL A 0 A_SetAngle(Angle-FRandom(-0.12,0.12));
	NULL A 0 A_SetPitch(Pitch-FRandom(-0.12,0.12));
	W2ZG A 2 A_WeaponReady(WRF_NOSECONDARY); // No WRF_ALLOWZOOM for this line.
	NULL A 0 A_SetAngle(Angle+FRandom(-0.12,0.12));
	NULL A 0 A_SetPitch(Pitch+FRandom(-0.12,0.12));
Bobby
Posts: 103
Joined: Sun Mar 03, 2019 11:59 am

Re: Kriegsland : Blutorden 2.4 (Z-Surprise page 40!)

Post by Bobby »

For some reason the weapons only version didn't seem to get the z-script update. The menu on it also seems off.
User avatar
Dr_Cosmobyte
Posts: 2816
Joined: Thu Jun 04, 2015 9:07 pm
Preferred Pronouns: He/Him
Location: Killing spiders.

Re: Kriegsland : Blutorden 2.4 (Z-Surprise page 40!)

Post by Dr_Cosmobyte »

Thanks for the heads-up friend. Will fix that as soon as possible.
User avatar
ShockwaveS08
Posts: 195
Joined: Thu Jul 07, 2016 7:29 pm
Preferred Pronouns: He/Him
Operating System Version (Optional): SteamOS
Graphics Processor: ATI/AMD with Vulkan/Metal Support
Location: Manhattan, IL

Re: Kriegsland : Blutorden 2.4 (Z-Surprise page 40!)

Post by ShockwaveS08 »

The GDrive links for the ZScript versions of the Kriegsland mods have expired. Unless the links are reuploaded, there's no way to download them.
User avatar
Ac!d
Posts: 347
Joined: Tue Apr 02, 2019 5:13 am
Location: France

Re: Kriegsland : Blutorden 2.4 (Z-Surprise page 40!)

Post by Ac!d »

Return to “Gameplay Mods”