Tried to register class 'FlameThrower' more than once.
Execution could not continue.
Script error, "Flamethrower.pk3:decorate.txt" line 8:
Unexpected ',' in definition of 'FlameThrower'
This is my DECORATE:
Code: Select all
//*** Created with EZDec ***//
//*** aurasite.net ***//
ACTOR Flamethrower : Weapon
{
Weapon.AmmoType "Cell"
Weapon.AmmoGive 50
Weapon.AmmoUse 10
Weapon.SlotNumber 5, RocketLauncher, Flamethrower
AttackSound "weapons/pistol"
States
{
Ready:
HSKL A 1 A_WeaponReady
Loop
Select:
HSKL A 1 A_Raise
Loop
Deselect:
HSKL A 1 A_Lower
Loop
Spawn:
SKLL A 1
Loop
Fire:
MISG B 3 A_FireCustomMissile("FatShot", 0.0, true, 0.0, -2.0, 0, 0.0)
Goto Ready
}
}
