Oh, and just to let you know - in case, you don't - you can shorten this piece of code:
Code: ags
..using this code here. You don't need {} when there's only one command after the if-statement.
Code: ags
if (buk == 0)
{
sentence = "Not enough, need more";
}
if (buk == 1)
{
sentence = "It's a shitty job but someone's gotta do it";
}
if (buk == 2)
{
sentence = "I'm getting tired of this";
}
..using this code here. You don't need {} when there's only one command after the if-statement.
if (buk==0) sentence= "Not enough, need more";
if (buk==1) sentence= "It's a shitty job but someone's gotta do it";
if (buk==2) sentence= "I'm getting tired of this";