Post: C# How to spawn a Grenade "G_FireGrenade"
10-24-2017, 12:05 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Hi all,
MW3 1.24 How to spawn a grenade "G_FireGrenade".
Credits to my buddy xCSBKx

Main G_FireGrenadeFunction:
    
public static int G_GetWeaponForName(string WeaponName)
{//0x001c34b8 - uint G_GetWeaponForName(uint buffer, char const *name)
RPC.Call(0x001c34b8, 0x1004f000, WeaponName);
return PS3.Extension.ReadInt32(0x1004f000);
}

public static uint G_FireGrenade(uint Client, float[] Origin, string WeaponName = "frag_grenade_mp", int Time = 3500)
{//0x001993F8 - G_FireGrenade(gentity_s *parent, float *start, float *dir, int grenadeWPID, char grenModel, int rotate, int time)
int WeaponIndex = G_GetWeaponForName(WeaponName);
return (uint)RPC.Call(0x001993F8, 0x00FCA280 + (Client * 0x280), Origin, new float[] { 0, 0, 0 }, WeaponIndex, 1, Time, WeaponIndex);
}

Example 1: How to call G_FireGrenade
    
public static uint SmokeGrenade(uint Client, string WeaponName = "smoke_grenade_mp", int Time = 3500)
{
if (string.IsNullOrEmpty(WeaponName))
WeaponName = "smoke_grenade_mp";
float[] Origin = GetOrigin(Client);
Origin[2] += -100;
return G_FireGrenade(Client, Origin, WeaponName);
}

Projectile List:
frag_grenade_mp
claymore_mp
concussion_grenade_mp
emp_grenade_mp
flash_grenade_mp
frag_grenade_short_mp
smoke_grenade_mp
scrambler_mp
semtex_mp
throwingknife_mp
portable_radar_mp
trophy_mp
bouncingbetty_mp
c4_mp
c4death_mp
deployable_vest_marker_mp
airdrop_trap_explosive_mp
airdrop_escort_marker_mp
airdrop_juggernaut_mp
airdrop_marker_mp
airdrop_sentry_marker_mp
airdrop_tank_marker_mp
airdrop_trap_explosive_mp
airdrop_trap_marker_mp
sam_projectile_mp
ims_projectile_mp
harrier_missile_mp
xm25_mp
gl_mp
m320_mp
rpg_mp
iw5_smaw_mp
stinger_m
javelin_mp
specialty_tacticalinsertion
specialty_scrambler
specialty_portable_radar

Have fun!!
Last edited by mrdarkblue ; 10-24-2017 at 12:15 PM.

The following 2 users say thank you to mrdarkblue for this useful post:

kiwi_modz, lucasaf01

Copyright © 2025, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo