Jump to content

Recommended Posts

Posted (edited)

This is a bump.
JUst chiming in here. Need to change settings for the flamethrower on Silent 1. After burn is crazy.
I see you don't have access to the LUA settings. BUt I think if we make it self inflicted (flamer cloud) it would be on par.
Since atm, it is idiotic.

Edited by MosesIsComingLookBusy
  • Confused 1
  • 100 2
Posted
On 5/6/2025 at 7:19 PM, Cocanation said:

I'm not sure that's possible, that might be a FF only feature in silent mod or vanilla ET 

Can't be done without enabling friendly fire.

This was discussed in the past for beg2 and went nowhere. 

I think silent 1 should have FF on anyway since it has a more experienced population..

 

 

  • Like 1
  • Haha 1
Posted

i found this lua script from many years ago i used it on my silentmod server, dont ask me anything im just going to place the code here 😄

 

function et_InitGame(levelTime, randomSeed, restart)
    et.RegisterModname("Flamethrower Self-Damage")
end

function et_Obituary(victim, killer, meansOfDeath)
    -- Check if the weapon used was a flamethrower
    if meansOfDeath == 10 and victim == killer then  -- Flamethrower MoD ID (check your mod if different)
        local selfDamage = 20  -- Adjust this value for balance
        et.G_Damage(victim, 0, selfDamage, 0)
    end
end

 

  • Haha 1
Posted
On 5/6/2025 at 8:44 PM, Cocanation said:

I don't have access to the LUA folder/settings

 

  • Haha 1
  • Sad 1
  • ET Trial
Posted
8 minutes ago, Drempa said:

i found this lua script from many years ago i used it on my silentmod server, dont ask me anything im just going to place the code here 😄

 

function et_InitGame(levelTime, randomSeed, restart)
    et.RegisterModname("Flamethrower Self-Damage")
end

function et_Obituary(victim, killer, meansOfDeath)
    -- Check if the weapon used was a flamethrower
    if meansOfDeath == 10 and victim == killer then  -- Flamethrower MoD ID (check your mod if different)
        local selfDamage = 20  -- Adjust this value for balance
        et.G_Damage(victim, 0, selfDamage, 0)
    end
end

 

Um, that Lua script makes no sense... That absolutely won't do what you're trying to achieve. With friendly fire on, the killer and victim cannot be the same when using the flamethrower. Also, we're not even looking for the killer or victim — we're working with et_G_Damage. et_Obituary only triggers when a player dies, so you're essentially trying to inflict self-damage when another player dies?

Posted (edited)

You can discuss this somewhere else. This topic is for the map rotation of silent1. 

37 minutes ago, RNGesus said:

Um, that Lua script makes no sense... That absolutely won't do what you're trying to achieve. With friendly fire on, the killer and victim cannot be the same when using the flamethrower. Also, we're not even looking for the killer or victim — we're working with et_G_Damage. et_Obituary only triggers when a player dies, so you're essentially trying to inflict self-damage when another player dies?

 

Edited by Cocanation
  • 100 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.