Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
XCMachine

Bad numeric constant, please help!

Recommended Posts

ACTOR RemmingtonShotgun : Weapon Replaces Shotgun {
    Inventory.PickupMessage "You picked up Remmington!"
    Weapon.SelectionOrder 15
    Weapon.SlotNumber 3
    Weapon.AmmoUse 1
    Weapon.AmmoGive 15
    Weapon.AmmoType "Shells"
    Weapon.BobSpeed 2.2
    Weapon.BobRangeX 0.4
    Weapon.BobRangey 0.2
    
    States {
        Spawn:
        REMI A -1
        Stop
        
        Ready:
        REMI A 1 A_WeaponReady
        Loop
        
        Select:
        REMI A 1 A_Raise
        Loop
        
        Deselect:
        REMI A 1 A_Lower
        Loop
        
        Fire:
        REMI B 1 A_PlaySound("weapon/fireremm", CHAN_WEAPON)
        REMI B 1 A_FireBullets(9,9,6,6,"BulletPuff",1)
        REMI CDEFGHIJKL
        REMI A 0 A_Refire 
        Goto Ready
        
        Flash:
        USGF A 3 BRIGHT
        Stop
    }
}

 

 

And getting this problem:
Script error, "Dark Redemption.wad:REMISHOT" line 33:
SC_GetNumber: Bad numeric constant "REMI".

Share this post


Link to post

Ok now it's saying:
1 errors during actor postprocessing

Can you give me a lead how to make Slade 3 to make a test before run ?

 

Share this post


Link to post
8 minutes ago, XCMachine said:

Ok now it's saying:
1 errors during actor postprocessing

Can you give me a lead how to make Slade 3 to make a test before run ?

 

the ammotype should be "shell" instead of "shells" replacing it wif the singular make it work proper :)

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×