Hello,
I'm trying to write in custom script in galaxy editor, i'm can achieve something from it, but for now, I've no idea how to declare any variable via custom script.
I've tried to read from script,
That's from script when I create variable via gui, but if i create variable via custom script like that:
It just gives me syntax error in int lv_b; side.
So, can i create variables via custom script, or it's not implemented?
Thanks for response.
I'm trying to write in custom script in galaxy editor, i'm can achieve something from it, but for now, I've no idea how to declare any variable via custom script.
I've tried to read from script,
JASS:
// Variable Declarations
int lv_a;
// Variable Initialization
lv_a = 0;
That's from script when I create variable via gui, but if i create variable via custom script like that:
JASS:
int lv_b;
lv_b = 0;
It just gives me syntax error in int lv_b; side.
So, can i create variables via custom script, or it's not implemented?
Thanks for response.