; guide.es ; Event Script guide ;;;;; Implemented commands... ;;; Notes on strings... ;;; - enclose variable names in % in string messages like the global to print variables out ;;; - example (assume tag1 is a variable): Global Hello World %tag1% ;;; - use 2 % to print a single % ;;; - example: MonsterChat Tag1, I have 100%% life. ; -- use a @ in front of label to denote a gosub instead of a goto ; Example: IfMonsterExist MonsterTag1, @sub1 ; Hidden ; does not show up in /event command ; Log TRUE | FALSE ; each line is logged as it is executed ; Begin ; starting point of execution ; End ; stop script ; Goto