ZDoom: LSC Weapons pack V3 Ready for Download!

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.
Post Reply
User avatar
TypeSaucy
Posts: 1000
Joined: Wed Sep 17, 2008 9:31 am

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by TypeSaucy »

Lolo_is_cool wrote:@X-CrAzYkOoL-X
lol, not really... Dudukrazy made it already. it changes skin when the player takes a "portable" spaceship. personally, i think that his mod is better than mine :)
also, it would be funny to have a motobike to use going around doom maps and killing demons just accelerating aginst them :lol:
and caleb on a motobike.... who ever saw him on a motobike XD??
i was kinda talking about the pick-up thing, not randomizing the classes.
User avatar
Lolo_is_cool
Posts: 399
Joined: Sun Oct 19, 2008 12:07 pm
Location: italy
Contact:

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by Lolo_is_cool »

@X-CrAzYkOoL-X
i know =)
i don't need to change class to make the motobike sequence, i just put in the player's devorate the command "jumpifinventory" that when you have the bike, it goes on the section where caleb is on the motobike, got it?? :D

@DavidB1000
I put bug between """""""" """""""" because you're the only one who has this "problem". i have nothing to fix on the 2nd version about the RazorJack, because it works perfectly!
DavidB1000
Posts: 710
Joined: Wed Jul 30, 2008 4:45 pm
Location: Hell, 9th level.

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by DavidB1000 »

Well, it doesn't for me. And since the General forum is dead, I can't seem to get anyone to explain to me how the hell the thing crashes on me. :(
User avatar
TypeSaucy
Posts: 1000
Joined: Wed Sep 17, 2008 9:31 am

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by TypeSaucy »

Lolo_is_cool wrote:@X-CrAzYkOoL-X
i know =)
i don't need to change class to make the motobike sequence, i just put in the player's devorate the command "jumpifinventory" that when you have the bike, it goes on the section where caleb is on the motobike, got it?? :D
thats excacly what i was talking about! its like you can read my mind or something. :P
User avatar
Lolo_is_cool
Posts: 399
Joined: Sun Oct 19, 2008 12:07 pm
Location: italy
Contact:

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by Lolo_is_cool »

@X-CrAzYkOoL-X
yep, something like that :lol:
do you remember the flame staff from Hexen2?
well, i used AEOD's sprites, adding the caleb hand and the result is absolutely awesome :D
User avatar
TypeSaucy
Posts: 1000
Joined: Wed Sep 17, 2008 9:31 am

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by TypeSaucy »

hey you mind if i take a good look on it?
DavidB1000
Posts: 710
Joined: Wed Jul 30, 2008 4:45 pm
Location: Hell, 9th level.

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by DavidB1000 »

CaptainToenail says it might be a dodgy infinite loop in the coding for the weapon. Can you post the code for the weapon either in this topic, or the one I created in the General Forum? Because i really want to play this mod. :(
User avatar
Lolo_is_cool
Posts: 399
Joined: Sun Oct 19, 2008 12:07 pm
Location: italy
Contact:

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by Lolo_is_cool »

Here's the screen of the sprites: (i also added Caleb hands to the Magnum so, now we don't have other kind of hands anymore :D )
Image


And Here's the code:

Code: Select all

ACTOR RazorJack : Weapon replaces chainsaw
{ 
	Weapon.AmmoType2 "Bladeammo" 
	Weapon.AmmoGive2 5
	Weapon.AmmoUse2 1
	+MELEEWEAPON
                    Weapon.SelectionOrder 30
	Inventory.PickupSound "misc/w_pkup" 
	Scale 0.5
	Inventory.PickupMessage "You got a Razor Jack!"
	Obituary "%o was cut down to size by %k's razor jack."
	States 
	{ 
	Spawn: 
	NULL A 0 A_SpawnItem("Bladeammo")
		RR01 A -1 
		Goto Spawn+1
	Ready: 
		RR01 B 1 A_WeaponReady 
		Loop 
	Deselect: 
		RR01 B 1 A_Lower 
		NULL AA 0 A_LOWER
		Loop 
	Select: 
		RR01 B 1 A_Raise
		NULL AA 0 A_RAISE
		Loop
	Fire:
		RR01 IJKLX 1
		Hold:
		RR01 A 0 A_PlaySound("weapons/sawrevup") 
		RR01 YMNOPQRSTUVWZ 1 A_CustomPunch(2, 0, 0, "SawPuff", 100)
		SAW3 G 0 A_PlaySound("weapons/sawrevdown")
		RR01 XLKJI 1
		NULL A 0 A_ReFire
		Goto Ready
		Hold:
		RR01 A 0 A_PlaySound("weapons/sawful2")
		RR02 ABC 1 A_CustomPunch(2, 0, 0, "SawPuff", 100)
		SAW3 G 0 A_PlaySound("weapons/sawrevdown")
		NULL A 0 A_ReFire
		Goto ready
	AltFire: 
		RR01 B 3 A_PlayWeaponSound("gun/razor")
		RR01 B 0 A_FireCustomMissile("Blade", 0, 1, 0, 5)
		RR01 CDEF 1 ACS_Execute(851,0,7,random(-4,4),0)
		RR01 EDC 1 ACS_Execute(851,0,-7,random(-4,4),0)
		RR01 JH 3
		RR01 D 0 A_ReFire 
		goto Ready 
	} 
}
Everything's all right on the code.... :|
DavidB1000
Posts: 710
Joined: Wed Jul 30, 2008 4:45 pm
Location: Hell, 9th level.

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by DavidB1000 »

Well, giving myself the ammo doesn't cause a problem. So, I really don't know why it doesn't work. :(
Maybe that -1 does something wrong.
I swear, the error message Code: C0000005 (Access Violation - tried to read address 00000004)
Address: 004072F3 makes me wonder what exactly it's doing. Also, everytime I start a game, or load a save, I get this message. Could not fine autoloaded ACS library default.
Maybe that's causing something to mess up.
User avatar
Lolo_is_cool
Posts: 399
Joined: Sun Oct 19, 2008 12:07 pm
Location: italy
Contact:

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by Lolo_is_cool »

I don't know david.. i Really don't know... :|
User avatar
Mr.Green
Posts: 518
Joined: Mon Jan 05, 2009 2:28 am
Location: Mexico

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by Mr.Green »

Maybe David should download the latest ZDoom/GZDoom version. :|
User avatar
TypeSaucy
Posts: 1000
Joined: Wed Sep 17, 2008 9:31 am

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by TypeSaucy »

Mr.Green wrote:Maybe David should download the latest ZDoom/GZDoom version. :|
well, he said he already downloaded the latest version of gzdoom or gzdoom SVN. :P
User avatar
Lolo_is_cool
Posts: 399
Joined: Sun Oct 19, 2008 12:07 pm
Location: italy
Contact:

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by Lolo_is_cool »

David's pc is f****d up XD (lol, joke)

@X-CrAzYkOoL-X
so, what do you think of the sprites? are they good? :)
User avatar
TypeSaucy
Posts: 1000
Joined: Wed Sep 17, 2008 9:31 am

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by TypeSaucy »

the sprites, not bad, not bad at all, thiny. :thumb:
User avatar
Mr.Green
Posts: 518
Joined: Mon Jan 05, 2009 2:28 am
Location: Mexico

Re: [WIP] LSC Weapons pack V2: announced the Caleb motobike

Post by Mr.Green »

Lolo_is_cool wrote: @X-CrAzYkOoL-X
so, what do you think of the sprites? are they good? :)
Although I'm not Crazycool,I'd say that you're used a little bit too much 3D-rips.For example,you could use Doomero's D3-Weapons's Machinegun in SMG instead of the 3D rip machinegun.Otherwise I agree with Crazykool. :)
Post Reply

Return to “Gameplay Mods”