Is it possible to use the number from a global variable in a string?
When I try that, it gets the number thats stored as the global variable, and gets the corresponding string number and puts it in there, which is not what I want at all.
EDIT: Got it working now thanks anyway.
Code:
(str_store_string, s1, "$g_give_gold_amount"),
(str_store_string, s2, "@Pick up {s1} gold."),
(str_store_string, s0, s2),
When I try that, it gets the number thats stored as the global variable, and gets the corresponding string number and puts it in there, which is not what I want at all.
EDIT: Got it working now thanks anyway.
(assign, reg1, "$g_give_gold_amount"),
(str_store_string, s1, "@Pick up {reg1} gold."),
(str_store_string, s0, s1),
(str_store_string, s1, "@Pick up {reg1} gold."),
(str_store_string, s0, s1),