Matt's Hero Perk Help Thread

Hello there, how would I add a map to the loadout for all heros from 5000+ please.

A lot of players are saying they dont know where they are when they spawn in!!!

Awesome script by the way, thank you very much

robbie
 
Hello there, how would I add a map to the loadout for all heros from 5000+ please.

A lot of players are saying they dont know where they are when they spawn in!!!

Awesome script by the way, thank you very much

robbie
I believe something like
Code:
player addWeapon 'ItemMap';
under neath
Code:
player addMagazine _skinplayer;
would work :)

I just can't remember off the top of my head if a map is a magazine or considered a weapon

EDIT: It is a weapon, amended post for it
 
Sorry, one more thing now!! I was wondering if there was any way of disabling the random spawns and just have the perks please.

Many thanks

Robbie
 
Sorry, one more thing now!! I was wondering if there was any way of disabling the random spawns and just have the perks please.

Many thanks

Robbie
find this
Code:
_hero = [[2840.74,10159.4,0.002], [3897.95,8757.93,0.001], [13307.1,13091,0.001], [10368.3,9905.98,0.001], [4439.28,8841.53,0.001], [12241.8,11064.6,0.002], [3878.13,10903.7,0.001], [4637.62,6950.64,0.002], [10209.2,9634.9,0.002], [7968.87,11433.7,0.002]] call BIS_fnc_selectRandom;
change it to
Code:
//_hero = [[2840.74,10159.4,0.002], [3897.95,8757.93,0.001], [13307.1,13091,0.001], [10368.3,9905.98,0.001], [4439.28,8841.53,0.001], [12241.8,11064.6,0.002], [3878.13,10903.7,0.001], [4637.62,6950.64,0.002], [10209.2,9634.9,0.002], [7968.87,11433.7,0.002]] call BIS_fnc_selectRandom;

then under that find
Code:
player setPosATL _hero;
and change it to
Code:
//player setPosATL _hero;
 
Back
Top