Jump to content

Zombie kill Weapon stats


Wisam

Recommended Posts

Posted

Hello..

i want to make a script that when you kill a zombie your weapon skill that you killed with will raise +1 and im using zday zombie script.. i need zombie kill event but i dont know what to do because there is no zombie kill event in mta.. please help!

☣ Plauge Arma II DayZ Mod Server ☣

Here's the link to stay tuned with the server progress and features:

https://forum.mtasa.com/viewtopic.php?f=114&t=96675

Get Ready to play DayZ like you never did before

Posted

i used:

addEvent( "onZombieWasted", true ); 
addEventHandler( "onZombieWasted", root, 
    function ( killer, weapon, bodypart ) 
        if killer and killer ~= source then 
            if bodypart == 9 and weapon == 69 then 
                setPedStat( killer, 69, getPedStat( killer, 69 ) + 50 ); 
            end 
        end 
    end 
); 

but when i kill nothing happens (i got dxweaponstart scripts to show wep stats)

☣ Plauge Arma II DayZ Mod Server ☣

Here's the link to stay tuned with the server progress and features:

https://forum.mtasa.com/viewtopic.php?f=114&t=96675

Get Ready to play DayZ like you never did before

Posted

You need not use addEvent because onZombieWasted is a custom event of the zombie resource.

addEventHandler( 'onZombieWasted', root, 
    function ( killer, weapon, bodypart ) 
    if (killer and killer ~= source) then 
    if ( bodypart == 9 and weapon == 22) then 
                  setPedStat( killer, 69, getPedStat( killer, 69 ) + 50 ) 
                   end 
            end 
             
      end 
   ) 

- New , Kill System

- New, GameMode Intro

- Leve / Exp System

- New nametag showing style

- New , Hud For Players

- Skin Selection from SA-MP

- Money System / Buy Weapons

- Drop Weapons

- New, Flood System

- New , Group Assign

- Gun license For Weapons

- Random Rule System For Money

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...