• 0

    posted a message on Syntax error in trigger editor :(

    After some changes in the triggers i checked the variables i made and saw that one had no name so i made one for it and not everything is fine. I dont know exactly if this was the problem because made some other changes before but i hope it was :)

    thx for the answer

    Posted in: Triggers
  • 0

    posted a message on Syntax error in trigger editor :(

    Hi i was making some triggers like teleport from region to point and implented things like revive from this forum and now suddenly this Syntax error appears

    The editor says i have a problem in the Global Variables

    //--------------------------------------------------------------------------------------------------
    // Global Variables
    //--------------------------------------------------------------------------------------------------
    
    string[9] gv_;
    
    void InitGlobals () {
        int init_i;
    
        init_i = 0;
        while (init_i <= 8) {
            gv_[init_i] = null;
            init_i = init_i + 1;
        }
    }
    

    the editor marked this here

    string[9] gv_;

    I something wrong with this one?

    If you need more information just tell it but i need really some help because atm i can't save or it looks like i can't, i dont know but i dont want to make the map new :(

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