Script error, "LLCDUMMIES.wad:ZMAPINFO" line 5: Number expected
I'm not too sure how to move forward here since I have followed how to define editor numbers on the wiki and I can't find another WAD that implements this.
Here's my code:
ZMAPINFO
Code: Select all
DoomEdNums
{
11001 = Vyshnav
{
Code: Select all
version "4.1.3";
Class Vyshnav: PlayerPawn
{
default{
Health 100;
Radius 16;
Height 56;
Mass 100;
Painchance 255;
Speed 1;
+SOLID;
+SHOOTABLE;
+DROPOFF;
+PICKUP;
+NOTDMATCH;
+FRIENDLY;
+SLIDESONWALLS;
+CANPASS;
+CANPUSHWALLS;
+FLOORCLIP;
+WINDTHRUST;
+TELESTOMP;
+NOBLOCKMONST;
Player.AttackZOffset 8;
Player.JumpZ 8;
Player.GruntSpeed 12;
Player.FallingScreamSpeed 35, 40;
Player.ViewHeight 41;
Player.UseRange 64;
Player.ForwardMove 1,1;
Player.SideMove 1,1;
Player.ColorRange 0,0;
Player.SoundClass "player";
Player.DamageScreenColor "ff 00 00";
Player.MugShotMaxHealth 0;
}
States{
Spawn:
VYSH A -1;
Stop;
See:
VYSH AAAAABBBBB 1;
VYSH CCCCCDDDDD 1;
Goto Spawn;
Pain:
VYSH I 4;
Goto Spawn;
Melee:
VYSH D 5;
Goto Missile;
Missile:
VYSH E 8;
Goto Spawn;
Death:
VYSH J 3;
VYSH K 6;
VYSH L 6;
Stop;
XDeath:
VYSH J 3;
VYSH K 6;
VYSH L 6;
}
}