Author Topic: Script for maphacks......Superweapons  (Read 1718 times)

0 Members and 1 Guest are viewing this topic.

[TKC]Hubertus

  • SCP Developer
  • Klass Klown
  • ***
  • Posts: 327
    • View Profile
Script for maphacks......Superweapons
« on: January 29, 2004, 09:20:04 pm »
init.sqs:

player addmagazine "mavericklauncher"; player addweapon "mavericklauncher"
player addmagazine "laserguidedbomblauncher"; player addweapon "laserguidedbomblauncher"
player addmagazine "zsucannon"; player addweapon "zsucannon"
player addmagazine "MachineGun30A10"; player addweapon "MachineGun30A10"
player addmagazine "Rocket57x192"; player addweapon "Rocket57x192"
player addmagazine "MachineGun12_7"; player addweapon "MachineGun12_7"
player addmagazine "MachineGun30A10"; player addweapon "MachineGun30A10"

Anonymous

  • Guest
Script for maphacks......Superweapons
« Reply #1 on: January 29, 2004, 09:26:10 pm »
Wouldn't you have to define the "player" because every player has an individual name.  Then you would have to pick the right spot in the multiplayer setup, no?

[TKC]Hubertus

  • SCP Developer
  • Klass Klown
  • ***
  • Posts: 327
    • View Profile
Script for maphacks......Superweapons
« Reply #2 on: January 29, 2004, 09:30:29 pm »
Nah, player is a local variable, just try it, it works.

[TKC] maphax

  • Klass Klown
  • ***
  • Posts: 458
    • View Profile
LOOOL
« Reply #3 on: March 22, 2004, 08:06:03 pm »
OMG SO FUCKING FUNNY I UNLEASHED HELL ONA  SERVER WITH THAT LOL..........
[TKC] MAPHAX  AT URE SERVICE

Wizkid

  • Master Heckler
  • *****
  • Posts: 2923
    • View Profile
Script for maphacks......Superweapons
« Reply #4 on: March 22, 2004, 10:58:03 pm »
Jeez, I never realized cheating is so easy in OFP :|

Normal "editor" commands like Addweapon works??

BIS/CM you slackers  :bang
shut the fuck up!

[TKC]Hubertus

  • SCP Developer
  • Klass Klown
  • ***
  • Posts: 327
    • View Profile
Script for maphacks......Superweapons
« Reply #5 on: March 22, 2004, 11:23:56 pm »
Exactly. Everything you can use in a script/mission editor can be used as a cheat.

[TKC]Wesker

  • ArmA's Most Wanted
  • The Central Committee
  • Master Heckler
  • *
  • Posts: 2209
  • The Illusive Man
    • View Profile
    • TKC Tube
Script for maphacks......Superweapons
« Reply #6 on: April 01, 2004, 06:43:34 am »
i used this on a C&H map

i couldent get it to work

wot will activate it?

The Illusive Man

[TKC]Wesker

  • ArmA's Most Wanted
  • The Central Committee
  • Master Heckler
  • *
  • Posts: 2209
  • The Illusive Man
    • View Profile
    • TKC Tube
Script for maphacks......Superweapons
« Reply #7 on: April 04, 2004, 06:00:08 am »
to get this to work u must

remove the current weapons first

init.sqs
Code: [Select]
removeAllWeapons player
player addmagazine "mavericklauncher"; player addweapon "mavericklauncher"
player addmagazine "laserguidedbomblauncher"; player addweapon "laserguidedbomblauncher"
player addmagazine "zsucannon"; player addweapon "zsucannon"
player addmagazine "MachineGun30A10"; player addweapon "MachineGun30A10"
player addmagazine "Rocket57x192"; player addweapon "Rocket57x192"
player addmagazine "MachineGun12_7"; player addweapon "MachineGun12_7"
player addmagazine "MachineGun30A10"; player addweapon "MachineGun30A10"

The Illusive Man