Results 1 to 4 of 4
  1. #1
    Rebitaay's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Earth
    Posts
    45
    Reputation
    10
    Thanks
    1

    I made a menu. It works, but it won't execute scripts.

    Okay. At this point I am going in circles try to do everything possible to make this work. After hours of coding a sort of "Quick Menu" (I press TAB, and a scroll-wheel style menu pops up with my scripts) it will not execute SOME scripts, even though I've used them before. Basically, the menu is split into different categories. Spawning, Teleporting, Griefing, Player scripts (skins, stats etc.), Perks (esp etc.) and Fun (like rainbow farts :3).
    It never used to be like this. It used to be a scroll option, and un-organized. I was unhappy. So I made it so I inject with my bypass, and hit TAB to access the menu. That worked as well. I got OCD about it not being organized, and I spent hours splitting it into sections... And that's where it all went WRONG! Basically, even though I'm not the master of scripting, I can see NOTHING WRONG with this, or why it shouldn't work. I have a menu my friend send me, using the same mechanics. You press Page Down to access it, and it's split into sections. It works. So why does MINE not work? It's coded almost the same as his, but it's personalized. I've tried for days to get it to work, and to no avail. What confuses me is that, for example: I access the menu, and go to the Perks section. ESP does not work, however, No Aggro does. It's not the scripts, I know that for a fact, because I've used them many many times with the older versions of my menu. I thought it may have been the BE update a few days ago, or the DayZ update today. But no, the older ones (when I made it TAB, to be specific) work fine with the same scripts. So my question is, WHAT THE FUCK HAVE I DONE?!

    What I've been focusing on is the "perks =" section. Some scripts work there, others don't. It's the same for all.
    Menu Code:
    Code:
    pathtoscrdir = "\Rmenu\";
    exstr = 'player execVM "'+pathtoscrdir+'%1"';
    rmenu = 
    [
        ["",true],
        ["=======R-Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Category: Spawning", [2], "#USER:spawning", -5, [["expression", ""]], "1", "1"],
        ["Category: Teleport", [3], "#USER:teleport", -5, [["expression", ""]], "1", "1"],
        ["Category: Griefing", [4], "#USER:griefing", -5, [["expression", ""]], "1", "1"],
        ["Category: Player", [5], "#USER:player", -5, [["expression", ""]], "1", "1"],
        ["Category: Perks", [6], "#USER:perks", -5, [["expression", ""]], "1", "1"],
        ["Category: Fun", [7], "#USER:fun", -5, [["expression", ""]], "1", "1"],
        ["Repair Area", [8],  "", -5, [["expression", format[exstr,"repair.sqf"]]], "1", "1"],
        ["Delete Target", [9],  "", -5, [["expression", format[exstr,"delete.sqf"]]], "1", "1"],
        ["=======Main Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["* = LOGGED||USE AT OWN RISK", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Exit", [10], "", -3, [["expression", ""]], "1", "1"]
    ];
    
    
    
    
    spawning = 
    [
        ["",true],
        ["=======R-Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Backpacks", [2],  "", -5, [["expression", format[exstr,"backpacks.sqf"]]], "1","1"],
        ["Vehicles", [3],  "", -5, [["expression", format[exstr,"vehicles.sqf"]]], "1", "1"],
        ["Weapons", [4],  "", -5, [["expression", format[exstr,"weapons.sqf"]]], "1", "1"],
        ["Items", [5],  "", -5, [["expression", format[exstr,"items.sqf"]]], "1", "1"],
        ["Box-O-Stuff*", [6],  "", -5, [["expression", format[exstr,"box.sqf"]]], "1", "1"],
        ["All Items", [7],  "", -5, [["expression", format[exstr,"box.sqf"]]], "1", "1"],
        ["=======Spawning=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Exit", [8], "", -3, [["expression", ""]], "1", "1"]
    
    
    ];
    
    
    
    
    teleport = 
    [
        ["",true],
        ["=======R-Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Me to Player", [2],  "", -5, [["expression", format[exstr,"tp.sqf"]]], "1", "1"],
        ["Player to Me", [3],  "", -5, [["expression", format[exstr,"tpother.sqf"]]], "1", "1"],
        ["TP All", [4],  "", -5, [["expression", format[exstr,"tpconf.sqf"]]], "1","1"],
        ["=======Teleport=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Exit", [5], "", -3, [["expression", ""]], "1", "1"]
    ];
    
    
    
    
    griefing = 
    [
        ["",true],
        ["=======R-Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Wreck Server", [2],  "", -5, [["expression", format[exstr,"wreckconf.sqf"]]], "1", "1"],
        ["Kill All", [3],  "", -5, [["expression", format[exstr,"killconf.sqf"]]], "1", "1"],
        ["TP All", [4],  "", -5, [["expression", format[exstr,"tpconf.sqf"]]], "1","1"],
        ["Dance All", [5],  "", -5, [["expression", format[exstr,"disco.sqf"]]], "1", "1"],
        ["Thunderdome **TESTING**", [6],  "", -5, [["expression", format[exstr,"tdconf.sqf"]]], "1", "1"],
        ["=======Griefing=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Exit", [7], "", -3, [["expression", ""]], "1", "1"]
    ];
    
    
    
    
    
    
    player = 
    [
        ["",true],
        ["=======R-Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Add Stats", [2],  "", -5, [["expression", format[exstr,"stats.sqf"]]], "1", "1"],
        ["Change Skin", [3],  "", -5, [["expression", format[exstr,"skins.sqf"]]], "1", "1"],
        ["Heal Self", [4],  "", -5, [["expression", format[exstr,"heal.sqf"]]], "1", "1"],
        ["=======Player=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Exit", [5], "", -3, [["expression", ""]], "1", "1"]
    ];
    
    
    
    
    perks = 
    [
        ["",true],
        ["=======R-Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["ESP", [2],  "", -5, [["expression", format[exstr,"esptp.sqf"]]], "1", "1"],
        ["God Mode", [3],  "", -5, [["expression", format[exstr,"godmode.sqf"]]], "1", "1"],
        ["No Recoil", [4],  "", -5, [["expression", format[exstr,"norecoil.sqf"]]], "1", "1"],
        ["Infinate Ammo", [5],  "", -5, [["expression", format[exstr,"infammo.sqf"]]], "1", "1"],
        ["No Aggro", [6],  "", -5, [["expression", format[exstr,"noaggro.sqf"]]], "1", "1"],    
        ["=======Perks=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Exit", [7], "", -3, [["expression", ""]], "1", "1"]
    ];
    
    
    
    
    fun = 
    [
        ["",true],
        ["=======R-Menu=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Rainbow Smoke", [2],  "", -5, [["expression", format[exstr,"smoke.sqf"]]], "1", "1"],
        ["Spawn Heli-Bus", [3],  "", -5, [["expression", format[exstr,"helibus.sqf"]]], "1", "1"],
        ["Dance", [4],  "", -5, [["expression", format[exstr,"dance.sqf"]]], "1", "1"],
        ["Para-Cows", [5],  "", -5, [["expression", format[exstr,"cows.sqf"]]], "1", "1"],
        ["=======Perks=======", [-1], "", -5, [["expression", ""]], "1", "0"],
        ["Exit", [6], "", -3, [["expression", ""]], "1", "1"]
    ];
    
    
    
    
    showCommandingMenu "#USER:rmenu";
    Any help, even just ideas/suggestions would be appreciated.
    Also, I don't really care if anyone wants to use this menu because it was not made 100% by me.. I will provide no explanation on how to use it or how safe it is.

    Ohgodhelpme,
    Rebitaay


    ---------- Post added at 08:33 PM ---------- Previous post was at 06:51 PM ----------

    Bump...
    Last edited by Rebitaay; 02-04-2013 at 04:53 PM.

  2. #2
    darkangel1's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    San Diego, CA
    Posts
    542
    Reputation
    15
    Thanks
    153
    Maybe you need a new RE bypass.
    Want to learn how to customize your own menu's/write your own scripts? Check out my sticky in the help section
    Or click this link -
    https://www.mpgh.net/forum/696-dayz-h...nto-menus.html
    Quote Originally Posted by typh0 View Post
    the only person that can ban you, is the big chief mr battleye himself. no admin or hacker or player can do this. In addition to this the big chief mr battleye will ban you based on the bypasser you're using NOT what scripts you are using.

  3. #3
    asz119's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Minecraft.exe
    Posts
    68
    Reputation
    10
    Thanks
    133
    My Mood
    Happy
    Make sure your execution directorys are correct, if it is still not working then see if their are errors in the menu/hacks themselves.

  4. #4
    Rebitaay's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Earth
    Posts
    45
    Reputation
    10
    Thanks
    1
    Okay nvm, just fixed it. No idea how, I just messed around. Sometimes it pays off!

Similar Threads

  1. [Solved] I made an Injector (work) but there are more files :(
    By Kilpo in forum CrossFire Help
    Replies: 3
    Last Post: 01-27-2013, 11:58 AM
  2. Gellins D3D menu work but features crash!
    By Mr.Magicman in forum Combat Arms Help
    Replies: 0
    Last Post: 06-01-2010, 09:24 AM
  3. YESS I GOT IT-but menu isnt working all tht good
    By [BOS]Adi in forum CrossFire Hacks & Cheats
    Replies: 3
    Last Post: 12-12-2009, 01:25 AM
  4. My UCE pointer finder works but how do i find pointer in WarRock?
    By scooby107 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-01-2007, 01:14 PM
  5. idk if this IP spoofer would work but here!
    By stupidiot in forum WarRock - International Hacks
    Replies: 10
    Last Post: 04-30-2007, 06:59 AM

Tags for this Thread