Jump to content

How to get Hash code of current weapon Clientside c#?


Recommended Posts

Posted

Hi,
I am looking for a function to get the Hash or Name of current weapon on Clientside c#, it is similar to player.CurrentWeapon on Serverside, anyone have any idea?
I'm trying to do it on OnPlayerWeaponShot

  • 2 months later...
Posted
// Get the current player object
Player player = Game.Player;

// Get the current weapon object
Weapon weapon = player.Character.Weapons.Current;

// Get the hash code of the weapon
int hashCode = weapon.Hash;

I hope it helps!

  • Like 1

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...