Okay, so I have been programming lots of codes already particularly C and Basic. I haven't dissected yet the whole macro programming here. Is it possible to assign value like for example map on a variable? I am thinking about something like this.
'config is: lockmap gef_fild01
'declare variable x as global variable
Code: Select all
automacro changemap{
timeout 600
call {
if (x == gef_fild01){
x = prt_fild01;
}
else {
x = gef_fild01;
}
do talk @npc (88 159) 'talking at an npc
do talk resp 1 'choosing to add text on warper npc
do talk text x 'placing variable x as the lockmap
do conf lockmap x
release changemap
}
}
Code: Select all
automacro anothermacro{
location x
'other conditions
call {
do c @return
release anothermacro
}
}
Is it possible?