ForceWeapon

From Soldat Community Wiki
Revision as of 19:54, 23 August 2012 by Shoozza (talk | contribs) (Created page with "===From the Scripting Manual=== ''procedure ForceWeapon(ID, Primary, Secondary, Ammo: byte);'' '''Parameter Info:''' ID (Byte): Player ID to change weapon. Primary (By...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

From the Scripting Manual

procedure ForceWeapon(ID, Primary, Secondary, Ammo: byte);

Parameter Info:
 ID (Byte): Player ID to change weapon.
 Primary (Byte): Weapon Number to set primary weapon to.
 Secondary (Byte): Weapon Number to set secondary weapon to.
 Ammo (Byte): Ammo to give the player. 0 for default.

Description:
 This function will force the specified player(ID) to change their Primary and Secondary weapons.
 NOTE: Set Ammo to 0 to use the default ammo count for the (Primary) gun.

Examples

begin
    ForceWeapon( 0, 3, 0, 0 );
    // Forces all players to use AK as primary.
    ForceWeapon( ID, 3, 0, 0 );
    // Forces player 'ID' to use AK as primary.
end;


External Links