Ejemplo n.º 1
0
def RunAutoJoiner(mainGui):
    gui = Gui(["AutoJoiner, Created By Magomir", ___, ___], [
        "Select if you are in squad with Commander or just in normal party, then just press \"Start\" button.",
        ___, ___
    ], [
        "To stop the execution of this script just hold ESC button for a moment",
        ___, ___
    ], ["Join type:", R1("Commander"),
        R1("Party")], [["Start"], ___, ___], [Quit, ___, ___])

    gui.Start = run_joiner

    gui.run()
Ejemplo n.º 2
0
def RunGroupCreator(mainGui):
    gui = Gui(["Group Creator", _, _],
              ["Pick group:", R1("Fractal"),
               R1("Strike")], ["Select what you have", _, _],
              ["Dps", "__dps__", ___], ["Condidps", "__condidps__", ___],
              ["Bs", "__bs__", ___], ["Tank", "__tank__", ___],
              ["Druid", "__druid__", ___], ["Hfb", "__hfb__", ___],
              ["Alacrane", "__alacrane__", ___],
              ["How much kp?", "__kp__", ___], [["Start"], ___, ___],
              [Quit, ___, ___])
    gui.dps = 0
    gui.condidps = 0
    gui.bs = 0
    gui.tank = 0
    gui.druid = 0
    gui.hfb = 0
    gui.alacrane = 0
    gui.kp = 250

    gui.Start = create_party
    gui.run()