Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

For string I have a simple solution:

...
: set_string var = "test_var"  text = "some val" ;
: gosub "my_sub" ;
...
my_sub : subroutine {
    : if (test_var == "some val" ){
        ...
    }
}

Probably for objects it only can be if-elseif-else block in the subroutine.