I'm back now send me the code, and don't be madfellowzdoomer wrote:Lemme rephrase that.
I suggest you google up Slade3 or XWE or SOMETHING to extract the hexen stuff yourself. Ill submit code once you come back.



I'm back now send me the code, and don't be madfellowzdoomer wrote:Lemme rephrase that.
I suggest you google up Slade3 or XWE or SOMETHING to extract the hexen stuff yourself. Ill submit code once you come back.
Okay, dont worry i'm patientfellowzdoomer wrote:Ok. Lemme polish it. Please dont be impatient.
haru00988 wrote:Okay, dont worry i'm patient
You forgot your lesson in the span of 1 post. That was fast.haru00988 wrote:Send it AS Quickly AS possible
No.edward850 wrote:haru00988 wrote:Okay, dont worry i'm patientYou forgot your lesson in the span of 1 post. That was fast.haru00988 wrote:Send it AS Quickly AS possible
Please don't do this in the future.haru00988 wrote:Delete
Okay, i tried to delete but couldnt, the. I write that.wildweasel wrote:Please don't do this in the future.haru00988 wrote:Delete
now i'm patient theres gone one day, are you now finished?fellowzdoomer wrote:You COULD have deleted it yourself, theres a red X to the far right, but only if your post was the most recent.
Google search for definition of patient wrote:1. able to accept or tolerate delays, problems, or suffering without becoming annoyed or anxious.
"be patient, your time will come"
synonyms: forbearing, uncomplaining, tolerant, long-suffering, resigned, stoical
i was thinking when the first boss (dsparil) he will be beyond the black gate, and to reach him you have to kill thousands of ettins?GooberMan wrote:That's really not how patience works.
Google search for definition of patient wrote:1. able to accept or tolerate delays, problems, or suffering without becoming annoyed or anxious.
"be patient, your time will come"
synonyms: forbearing, uncomplaining, tolerant, long-suffering, resigned, stoical
Code: Select all
ACTOR Paladin : PlayerPawn
{
Speed 1
Health 100
Player.MaxHealth 250
Height 56
Radius 16
Mass 100
PainChance 255
States
{
Spawn:
PLAY A 5
Loop
See:
PLAY ABCDE 5
Loop
Melee:
Missile:
PLAY FG 7
Goto Spawn
Pain:
PLAY HIJK 7
PLAY K 1 A_Pain
Goto Spawn
Death:
PLAY LMNO 5 A_Scream
PLAY PQRS 7 A_NoBlocking
PLAY S 7
Stop
XDeath:
PLAY TUV 5 A_Scream
PLAY WXY 7 A_NoBlocking
PLAY Z 7
Stop
}
}
ACTOR Witch : PlayerPawn
{
Speed 1
Health 100
Player.MaxHealth 250
Height 56
Radius 16
Mass 100
PainChance 255
States
{
Spawn:
PLY2 A 5
Loop
See:
PLY2 ABCDE 5
Loop
Melee:
Missile:
PLY2 FG 7
Goto Spawn
Pain:
PLY2 HIJK 7
PLY2 K 1 A_Pain
Goto Spawn
Death:
PLY2 LMNO 5 A_Scream
PLY2 PQRS 7 A_NoBlocking
PLY2 S 7
Stop
XDeath:
PLY2 TUV 5 A_Scream
PLY2 WXY 7 A_NoBlocking
PLY2 Z 7
Stop
}
}
what with the sprites?fellowzdoomer wrote:Yes, im sorry. This is a base for the code. Its missing the code that tells what it starts with (elven wand, .50 beretta, etc) so, yeah.
You dont need frames up to Z. You can simply open up Notepad and use the Replace function to replace PLY2 and PLAY to whatever, and delete the excess frames on here.Code: Select all
ACTOR Paladin : PlayerPawn { Speed 1 Health 100 Player.MaxHealth 250 Height 56 Radius 16 Mass 100 PainChance 255 States { Spawn: PLAY A 5 Loop See: PLAY ABCDE 5 Loop Melee: Missile: PLAY FG 7 Goto Spawn Pain: PLAY HIJK 7 PLAY K 1 A_Pain Goto Spawn Death: PLAY LMNO 5 A_Scream PLAY PQRS 7 A_NoBlocking PLAY S 7 Stop XDeath: PLAY TUV 5 A_Scream PLAY WXY 7 A_NoBlocking PLAY Z 7 Stop } } ACTOR Witch : PlayerPawn { Speed 1 Health 100 Player.MaxHealth 250 Height 56 Radius 16 Mass 100 PainChance 255 States { Spawn: PLY2 A 5 Loop See: PLY2 ABCDE 5 Loop Melee: Missile: PLY2 FG 7 Goto Spawn Pain: PLY2 HIJK 7 PLY2 K 1 A_Pain Goto Spawn Death: PLY2 LMNO 5 A_Scream PLY2 PQRS 7 A_NoBlocking PLY2 S 7 Stop XDeath: PLY2 TUV 5 A_Scream PLY2 WXY 7 A_NoBlocking PLY2 Z 7 Stop } }