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

Dude27th (2)

Members
  • Content count

    25
  • Joined

  • Last visited

4 Followers

About Dude27th (2)

  • Rank
    Warming Up

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Dude27th (2)

    what are you working on? I wanna see your wads.

    New Map in my Zombies Ate My Neighbors Mod! ^^
  2. Dude27th (2)

    what are you working on? I wanna see your wads.

    NEW DEMO ! Link ^^ : https://www.moddb.com/mods/zombies-doomed-my-neighbors-mod/downloads/zamn-tc-march-demo
  3. Dude27th (2)

    what are you working on? I wanna see your wads.

    Zombies Ate My Neighbors TC: Next Demo Coming Soon! You can check it on ModDB: https://www.moddb.com/mods/zombies-doomed-my-neighbors-mod Follow me on twitter: https://twitter.com/Dude27th
  4. Dude27th (2)

    What should be DOOMified next?

    https://forum.zdoom.org/viewtopic.php?f=19&t=67666
  5. Dude27th (2)

    what are you working on? I wanna see your wads.

    It's sad that I can't use the mouse for aiming but it turned out better than I expected c:
  6. Dude27th (2)

    Decorate Offset Weapon Help !!!

    Nevermind ! A_WeaponOffset did the trick ! Update:
  7. Dude27th (2)

    Decorate Offset Weapon Help !!!

    So , this is actually the first time I try to use Offset in a weapon and I would like to match the sprite horizontally as a sight I'm drawing on screen. So I tried doing this: Fire: TNT1 A 0 A_JumpIfInventory("Sighted1",1,1) Goto Load PISG A 4 Offset(ACS_NamedExecuteWithResult("GetXOffset",0,0,0,0), 0) TNT1 A 0 A_PlaySound("weapons/pistol", CHAN_WEAPON) ... ... PISG B 5 A_ReFire Goto Ready And this being called: Script "GetXOffset" (void) { int x=0; x= ((angle-32864)*-1) /1000; SetResultValue(x); } But I got an "Bad Numeric Constant" error :/ Somebody knows why ???
  8. Omg so I just got a notification that the mod is going to appear in ModDb's Mods of the week! <3 <3 <3
  9. Is this ZSCript? I don't understand the language. Regardless you should start by checking if the value set in the menu is working in the cvar. You can test this by writing "get (your cvar name)" in the console. Otherwise than that I recommend you to use an ACS script to return the float value of your CVAR.
  10. Dude27th (2)

    Doom Weapon Reloading

    Of course you need to create the actor first which would act as the counter, something like this should do: Actor FakeBullets : Inventory { Inventory.MaxAmount 15 }
  11. Dude27th (2)

    Doom Weapon Reloading

    You should use an inventory item wich counts as "fake clip" bullets. Let's say your "clip" has 15 bullets, so you could add to the player one of these fake bullets every time you shoot one. So if you had enough fake bullets already you could check with "A_JumpIfInventory" to check if your fake clip was completely depleted, and the "A_JumpIfInventory" allows you to jump to another weapon state if it checks as true. For example: Fire: TNT1 A 0 A_JumpIfInventory("FakeBullet",15,"FakeReload") // Before firing it checks if you fired enough bullets to deplete a "clip", if true jumps to FakeReload, if not continues below TNT1 A 0 A_GiveInventory("FakeBullet",1) //This add a fake bullet to the player to work as a counter everytime you shoot FIRE A 5 FIRE A 1 A_Refire Goto Ready FakeReload: RELO ABCDE 5 //Your reload animation TNT1 A 0 A_TakeInventory("FakeBullets",15) // This take your fake bullets to reset the counter Goto Ready
×