public static uint Spawn_Instant_Predator(uint Client, Single X, Single Y, Single Z, string WeaponName = "remotemissile_projectile_mp", uint Speed = 1000)
{
return G_FireRocket(Client, WeaponName, new float[] { X, Y, Z }, new float[3], new float[] { 0, 0, -Speed });
}
public static uint GetEntityIndex(uint Entity)
{
return (Entity - 0xfca280) / 0x280;
}
public static int G_ClientTagIndex(string Tag)
{
return RPC.Call(0x001BEB3C, Tag);
}
public static void CameraLinkTo(uint Client, uint Entity, string Tag = "tag_origin")
{
PS3.Extension.WriteByte(0x0110a293 + (Client * 0x3980), 0x02);//0xA
PS3.Extension.WriteUInt32(0x0110a2c4 + (Client * 0x3980), GetEntityIndex(Entity));
PS3.Extension.WriteInt32(0x0110a2c8 + (Client * 0x3980), G_ClientTagIndex(Tag));//SV_DObjGetBoneIndex(Entity, Tag));
}
public static void CameraUnlink(uint Client)
{
PS3.Extension.WriteByte(0x0110a293 + (Client * 0x3980), 0);
PS3.Extension.WriteInt32(0x0110a2c4 + (Client * 0x3980), 0);
PS3.Extension.WriteInt32(0x0110a2c8 + (Client * 0x3980), 0);
}
public static void ControlsLinkTo(uint Client, uint Vehicle)
{
uint v1 = 0xfca280 + (Client * 0x280);
uint v3 = Vehicle;
PS3.Extension.WriteByte(0x0110a28d + (Client * 0x3980),
;
PS3.Extension.WriteInt32(0x0110a2cc + (Client * 0x3980), PS3.Extension.ReadInt32(Vehicle));
//0x00171B34 - void EntHandle::setEnt(EntHandle *this, gentity_s *ent)
RPC.Call(0x00171B34, Vehicle + 0x210, v1);
uint v4 = PS3.Extension.ReadUInt32(v3 + 4);
if (v4 == 4)
{
PS3.Extension.WriteUInt32(v3 + 0x1C8, 12
;
//v3->missile.flags |= 0x80u;
}
else if (v4 == 12 | v4 == 14)
{
//0x00312AE0 - void VEH_PlayerRemoteControl(gentity_s *vehEnt, gentity_s *player)
RPC.Call(0x00312AE0, v3, v1);
}
}
public static void ControlsUnlink(uint Client)
{
PS3.Extension.WriteByte(0x0110a28d + (Client * 0x3980), 0);
PS3.Extension.WriteInt32(0x0110a2cc + (Client * 0x3980), 0);
}
public static void Give_Instant_Predator(uint Client)
{
uint Rocket = Spawn_Instant_Predator((uint)Client, 600, 500, 24000);
CameraLinkTo((uint)Client, Rocket);
ControlsLinkTo((uint)Client, Rocket);
while (true)
{
if (PS3.Extension.ReadByte(Rocket + 3) == 0)
{
RPC.playSound(-1, "exp_suitcase_bomb_sweet");
CameraUnlink((uint)Client);
ControlsUnlink((uint)Client);
break;
}
}
}
Copyright © 2025, NextGenUpdate.
All Rights Reserved.