• 0

    posted a message on Terrainer Needed For Remakes

    just one of my favorites that why

    Posted in: Team Recruitment
  • 0

    posted a message on Terrainer Needed For Remakes

    Hey, guys im looking to get an exact remake of Dark Continent a blizzard map fro brood war, i need someone to do this as i cant, i tried convert but it doesnt work.

    Posted in: Team Recruitment
  • 0

    posted a message on (Web designer needed) New WoW Website for Guides on all dungeons and raids

    Hey guys, im looking for a few web designers to help out in making a new simple website just so people can look up fights, no accounts will be made, but will be a subscription for current content. If anyone is interested just email me at [email protected] with your experience and your availability.

    Posted in: Off-Topic
  • 0

    posted a message on How To Convert Trigger(s) To Custom Script

    @Xkiller9000

    Here is an example...from a basic trigger i turned it into this   (this is part of a 30,000 line script)

    //--------------------------------------------------------------------------------------------------
    void gt_SetFALSEforSkills_Init () {
        gt_SetFALSEforSkills = TriggerCreate("gt_SetFALSEforSkills_Func");
        TriggerEnable(gt_SetFALSEforSkills, false);
    }

    ________________________________________________________________________________
    ________________________________________________________________________________

    //--------------------------------------------------------------------------------------------------
    // Trigger: RTS to EX Unit Camera
    //--------------------------------------------------------------------------------------------------
    bool gt_RTStoEXUnitCamera_Func (bool testConds, bool runActions) {
        // Actions
        if (!runActions) {
            return true;
        }

        PlayerGroupLoopBegin(gv_aLLY);
        while (!PlayerGroupLoopDone()) {
            if ((UnitIsSelected(UnitGroupUnit(UnitGroupFilter(null, PlayerGroupLoopCurrent(), UnitGroupSelected(gv_pLAYER), UnitFilter((1 << c_targetFilterGround) | (1 << c_targetFilterLight), 0, (1 << c_targetFilterStructure), 0), 0), 1), gv_pLAYER) == true)) {
                TriggerExecute(gt_TPSEXUIOn, true, true);
                TriggerExecute(gt_TPSEXSmallLandUnitCamera, true, true);
                CameraUseHeightSmoothing(gv_pLAYER, false);
            }
            else {
            }

    Posted in: Galaxy Scripting
  • 0

    posted a message on How To Convert Trigger(s) To Custom Script

    Make a new custom script.. type in "dcSetColor(dialogitem, miiijok" and let it scan it and wait for the error window to come up. NOTE: THIS PART WILL TAKE TIME...Next highlight ALL of the script shown, copy, make a new script, paste...your done. NOTE: DEPENDING ON HOW MANY TOTAL TRIGGERS YOU HAVE THE SCRIPT WILL CONTAIN FROM 1-40,000 LINES. 30 TRIGGERS WITH 5 LINES EACH WILL CONTAIN ABOUT 1000 LINES.

    Posted in: Galaxy Scripting
  • To post a comment, please or register a new account.