Results 1 to 15 of 15
  1. #1
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503

    crappy wasteland scroll menu

    im in the process of rewriting it so why not just put what i currently have here. this is just to spawn popular/common items in wasteland firearms/attachments/ammo/backpacks/cloths/whatever else i forgot, if you die just press F2 to reopen the menu. If anyone asks how to inject this i will kick you in testicles, have a nice day

    Code:
    start = {
    removeallactions player;
    player addAction ["Open The Menu", main];
    };
     
    [] spawn {
    ["TaskSucceeded", ["", "Hello"]] call BIS_fnc_showNotification;
    sleep 0.1;
    call start;
    };
     
    if (!isnil "youoiuoiasdfsd8433fadsfasd_Koko__hkeys") then {
            (findDisplay 46) displayRemoveEventHandler ["KeyDown", youoiuoiasdfsd8433fadsfasd_Koko__hkeys];
        };
        youoiuoiasdfsd8433fadsfasd_Koko__hkeybinds = {
            switch (_this) do {
                case 60: // F2
                {
                            [] spawn start;
                            hint 'AMERICA IS GREAT. also your menus open';
                            };
    };
    };
    waituntil {!isnull (finddisplay 46)};
            youoiuoiasdfsd8433fadsfasd_Koko__hkeys = (findDisplay 46) displayAddEventHandler ["KeyDown", "_this select 1 call youoiuoiasdfsd8433fadsfasd_Koko__hkeybinds; false;"];
    main = {
     removeallactions player;
    player addAction ["Firearms", firearms];
    player addAction ["Magazines", mags];
    player addAction ["Items", itms];
    player addAction ["Backpacks", backpacks];
    player addAction ["Clothing", clothing];
    player addAction ["Attachments", attachments];{
    call attachments;
    };
    player addAction ["Close Menu", backtomenu];
    };
     
    firearms = {
     removeallactions player;
    player addAction ["MK18", mk18];
    player addAction ["Zafir", zafir];
    player addAction ["MX 6.5", mx];
    player addAction ["MXS 6.5", mxs];
    player addAction ["Katiba", ktba];
    player addAction ["Lynx", lynx];
    player addAction ["Back", back2];
    player addAction ["To Main Menu", backtomenu];
    };
    mk18 = {
     removeallactions player;
    player addWeapon 'srifle_EBR_F'; player addPrimaryWeaponItem "20Rnd_762x51_Mag";
    player addAction ["Attachments", attachments];
    player addAction ["Back", back3];
    player addAction ["To Main Menu", backtomenu];
    };
    zafir = {
     removeallactions player;
    player addWeapon 'LMG_Zafir_F'; player addPrimaryWeaponItem '150Rnd_762x54_Box';
    player addAction ["Attachments", attachments];
    player addAction ["Back", back3];
    player addAction ["To Main Menu", backtomenu];
    };
    mx = {
     removeallactions player;
    player addWeapon 'arifle_MX_F'; player addPrimaryWeaponItem '30Rnd_65x39_caseless_mag';
    player addAction ["Attachments", attachments];
    player addAction ["Back", back3];
    player addAction ["To Main Menu", backtomenu];
    };
    mxs = {
     removeallactions player;
    player addWeapon 'arifle_MX_SW_F'; player addPrimaryWeaponItem '100Rnd_65x39_caseless_mag';
    player addAction ["Attachments", attachments];
    player addAction ["Back", back3];
    player addAction ["To Main Menu", backtomenu];
    };
    lynx = {
     removeallactions player;
    player addWeapon 'srifle_GM6_F'; player addPrimaryWeaponItem '5Rnd_127x108_Mag';
    player addAction ["Attachments", attachments];
    player addAction ["Back", back3];
    player addAction ["To Main Menu", backtomenu];
    };
    ktba = {
     removeallactions player;
    player addWeapon 'arifle_Katiba_F'; player addPrimaryWeaponItem '30Rnd_65x39_caseless_green';
    player addAction ["Attachments", attachments];
    player addAction ["Back", back3];
    player addAction ["To Main Menu", backtomenu];
    };
     
    mags = {
    removeallactions player;
    player addAction ["7.62 20 rounds", sstwotwenty];
    player addAction ["7.62 10 rounds", sstwoten];
    player addAction ["6.5 30 rounds", sfthirty];
    player addAction ["6.5 100 rounds", sfhundred];
    player addAction ["5.56 30 rounds", ffsthirty];
    player addAction ["Vermin 45ACP", vmnffacp];
    player addAction ["Zafir 150 rounds", zonefifty];
    player addAction ["MK200 200 rounds", mk200a];
    player addAction ["Lynx 5 rounds", lnxfive];
    player addAction ["Back", back2];
    player addAction ["To Main Menu", backtomenu];
    };
    sstwotwenty = {
    player addMagazines ["20Rnd_762x51_Mag", 5];
    };
    sstwoten = {
    player addMagazines ["10Rnd_762x54_Mag", 7];
    };
    sfthirty = {
    player addMagazines ["30Rnd_65x39_caseless_mag", 5];
    };
    sfhundred = {
    player addMagazines ["100Rnd_65x39_caseless_mag", 2];
    };
    ffsthirty = {
    player addMagazines ["30Rnd_556x45_Stanag", 5];
    };
    vmnffacp = {
    player addMagazines ["30Rnd_45ACP_Mag_SMG_01", 5];
    };
    zonefifty = {
    player addMagazines ["150Rnd_762x54_Box", 2];
    };
    mk200a = {
    player addMagazines ["200Rnd_65x39_cased_Box", 2];
    };
    lnxfive = {
    player addMagazines ["5Rnd_127x108_Mag", 5];
    };
     
    itms = {
    removeallactions player;
    player addAction ["Night Vision", nv];
    player addAction ["NV to inventory", nvi];
    player addAction ["First aid kit", fak];
    player addAction ["ARCO to inventory", arcoi];
    player addAction ["DMS to inventory", dmsi];
    player addAction ["Back", back2];
    player addAction ["To Main Menu", backtomenu];
    };
    nv = {
    player addweapon 'NVGoggles';
    };
    nvi = {
    player additem 'NVGoggles';player additem 'NVGoggles';
    };
    fak = {
    player additem 'FirstAidKit';player additem 'FirstAidKit';player additem 'FirstAidKit';player additem 'FirstAidKit';player additem 'FirstAidKit';player additem 'FirstAidKit';
    };
    arcoi = {
    player additem 'optic_Arco';player additem 'optic_Arco';
    };
    dmsi = {
    player additem 'optic_DMS';player additem 'optic_DMS';
    };
     
    backpacks = {
     removeallactions player;
    player addAction ["Carryall", caryal];
    player addAction ["Bergen", bgen];
    player addAction ["Field pack", fld];
    player addAction ["Kitbag", kbag];
    player addAction ["Assault pack", asp];
    player addAction ["Back", back2];
    player addAction ["To Main Menu", backtomenu];
    };
    caryal = {
    player addBackpack "B_Carryall_cbr";
    };
    bgen = {
    player addBackpack "B_Bergen_rgr";
    };
    fld = {
    player addBackpack "B_FieldPack_cbr";
    };
    kbag = {
    player addBackpack "B_Kitbag_cbr";
    };
    asp = {
    player addBackpack "B_AssaultPack_cbr";
    };
     
    clothing = {
     removeallactions player;
    player addAction ["Ghillie Suit", ghillie];
    player addAction ["Fatigue's Hex", f***];
    player addAction ["Combat Fatigue's", cf***];
    player addAction ["Wetsuit", wetsuit];
    player addAction ["Default", dflt];
    player addAction ["Back", back2];
    player addAction ["To Main Menu", backtomenu];
    };
    ghillie = {
    player addUniform 'U_O_GhillieSuit';
    };
    f*** = {
    player addUniform 'U_O_CombatUniform_ocamo';
    };
    cf*** = {
    player addUniform 'U_MillerBody';
    };
    wetsuit = {
    player addUniform 'U_O_Wetsuit';
    };
    dflt = {
    player addUniform 'U_BG_Guerilla2_3';
    };
     
    attachments = {
     removeallactions player;
    player addAction ["Suppressors", suppressors];
    player addAction ["Optics", optics];
    player addAction ["Back", back2];
    player addAction ["To Main Menu", backtomenu];
    };
    suppressors = {
     removeallactions player;
    player addAction ["7.62", seven];
    player addAction ["6.5", six];
    player addAction ["6.5 LMG", sixmg];
    player addAction ["5.56", fivefivesix];
    player addAction [".45 ACP", fourfive];
    player addAction ["9mm", ninemm];
    player addAction ["Back", backattachments];
    player addAction ["To Main Menu", backtomenu];
    };
    //suppressors
    seven = {
    player addPrimaryWeaponItem "muzzle_snds_B";
    };
    six = {
    player addPrimaryWeaponItem "muzzle_snds_H";
    };
    sixmg = {
    player addPrimaryWeaponItem "muzzle_snds_H_MG";
    };
    fivefivesix = {
    player addPrimaryWeaponItem "muzzle_snds_M";
    };
    fourfive = {
    player addHandgunItem "muzzle_snds_acp";
    };
    ninemm = {
    player addHandgunItem "muzzle_snds_L";
    };
    optics = {
     removeallactions player;
    player addAction ["ACO", aco];
    player addAction ["Holo Sight", hlo];
    player addAction ["ARCO", arco];
    player addAction ["RCO", rco];
    player addAction ["MRCO", mrco];
    player addAction ["NVS", nvs];
    player addAction ["DMS", dms];
    player addAction ["SOS", sos];
    player addAction ["LRPS", lrps];
    player addAction ["Back", backattachments];
    player addAction ["To Main Menu", backtomenu];
    };
    //optics
    aco = {
    player addPrimaryWeaponItem "optic_Aco";
    };
    hlo = {
    player addPrimaryWeaponItem "optic_Holosight";
    };
    arco = {
    player addPrimaryWeaponItem "optic_Arco";
    };
    rco = {
    player addPrimaryWeaponItem "optic_Hamr";
    };
    mrco = {
    player addPrimaryWeaponItem "optic_MRCO";
    };
    nvs = {
    player addPrimaryWeaponItem "optic_NVS";
    };
    dms = {
    player addPrimaryWeaponItem "optic_DMS";
    };
    lrps = {
    player addPrimaryWeaponItem "optic_LRPS";
    };
    sos = {
    player addPrimaryWeaponItem "optic_SOS";
    };
     
    backtomenu = {
    call start;
    };
    back = {
    call start;
    };
    back1 = {
    call main;
    };
    back2 = {
    call main;
    };
    back3 = {
    call firearms;
    };
    backmk18 = {
    call mk18;
    };
    backattachments = {
    call attachments;
    };
    backsuppressors = {
    call suppressors;
    };
    backoptics = {
    call optics;
    };
    Moderator Note:
    Code:
    Virus Scans added by NormenJaydenFBI  Virus Total | Jotti
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Jim Morrison; 06-03-2015 at 02:43 PM. Reason: Added Virus Scans
    LEEEEEEROY JEEEEENKINS

  2. The Following 17 Users Say Thank You to gogogokitty For This Useful Post:

    bozanich (06-06-2015),chopperkk (07-21-2015),cnhkyouno (07-18-2015),davidp234 (08-15-2015),dimitri13 (06-05-2015),HuangSong158045 (06-10-2015),Jme (06-04-2015),Liamp (06-06-2015),lollol3dx (06-06-2015),LWERNERKWDUMMI (06-07-2015),Marcelis02 (10-04-2015),MULLERCFBR (09-12-2015),nic911 (07-17-2015),OG4Prez (07-29-2015),smurfon1 (11-12-2015),titso003 (09-20-2015),VelliPX1 (06-05-2015)

  3. #2
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    File approved.


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

  4. The Following User Says Thank You to Jim Morrison For This Useful Post:

    gogogokitty (06-03-2015)

  5. #3
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by NormenJaydenFBI View Post
    File approved.
    i thought script didn't need a virus scan?
    LEEEEEEROY JEEEEENKINS

  6. #4
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Quote Originally Posted by gogogokitty View Post
    i thought script didn't need a virus scan?
    All files require virus scans, the only exceptions are image files and .txt files.


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

  7. #5
    itsxfrost's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    1
    My Mood
    Blah
    HOW DO I INJECT?

  8. #6
    seamaster's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    3436 angelpass drive mississauga ON
    Posts
    85
    Reputation
    10
    Thanks
    5
    what good is a menu if there are no script injectors

  9. #7
    iloliasian's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    In that town in that state.
    Posts
    43
    Reputation
    10
    Thanks
    61
    My Mood
    Cheeky
    Quote Originally Posted by seamaster View Post
    what good is a menu if there are no script injectors
    There are, you just need to know where to look. PM me if you want .

    ALSO (inb4 get kicked in testicles) HOW IN THE FUCK DO I INJECT?!?!?!?!?!

    With love,
    iloliasian(techfox3010)

    Looking for some sweet as fuck Arma 3 and/or DayZ hacks? Add me on skype!
    [img]https://**********.com/addskype/green/techfox3010.png[/img]

  10. #8
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by itsxfrost View Post
    HOW DO I INJECT?
    should i kick you now or later
    LEEEEEEROY JEEEEENKINS

  11. #9
    Jared1171's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    PM ME?

    I cannot PM I am sorry but I was wondering if you could help me out with some injectors? The one I am using is complete shit it takes like 5 minutes just to inject well if you wanna help my skype is NovaGamingz KKK Picture thanks!

  12. #10
    itsxfrost's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    1
    My Mood
    Blah
    gr8 script m8!

  13. #11
    Shushei's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    36
    My Mood
    Stressed
    Ohh i have seen this script before haha u found out what the error was? I think i did because i got it to work but i forgot to send it to you!

  14. #12
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by Shushei View Post
    Ohh i have seen this script before haha u found out what the error was? I think i did because i got it to work but i forgot to send it to you!
    nope still having the stupid missing ; error(with the new one that is) and it makes 0 sense lol
    LEEEEEEROY JEEEEENKINS

  15. #13
    Z-Nation's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Location
    47.614028°N 122.194015°W
    Posts
    1,831
    Reputation
    136
    Thanks
    4,328
    My Mood
    Amazed
    Did you bypass the kicking by battleye when you spawn a vehicle or weapon then?

  16. #14
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by thehelpman View Post
    Did you bypass the kicking by battleye when you spawn a vehicle or weapon then?
    ive never had that issue before with the servers i play on with it.
    LEEEEEEROY JEEEEENKINS

  17. #15
    Z-Nation's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Location
    47.614028°N 122.194015°W
    Posts
    1,831
    Reputation
    136
    Thanks
    4,328
    My Mood
    Amazed
    Quote Originally Posted by gogogokitty View Post
    ive never had that issue before with the servers i play on with it.
    Ya i tried it. Good work ,ty.

Similar Threads

  1. [Help Request] Wasteland base building Scroll menu!
    By johnnie852 in forum DayZ Help & Requests
    Replies: 1
    Last Post: 06-23-2013, 06:47 PM
  2. [Detected] Scroll Menu + Rustlers + Wasteland (Vehicle Spawning!) - CrinklyMilk
    By crinklymilk in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 359
    Last Post: 03-12-2013, 03:37 PM
  3. Scroll Menu
    By fwsefwsgrgwhergr in forum DayZ Discussion
    Replies: 2
    Last Post: 02-12-2013, 03:59 PM
  4. NEED HELP - how do I change the Scroll menu open key
    By Scenic. in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 0
    Last Post: 01-18-2013, 05:50 PM
  5. [Help] DayZ green scroll menu? [DE]
    By Herath in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 0
    Last Post: 09-10-2012, 07:26 AM