But yeah umm..
Code: Select all
mine1_ore = 1000
level_trigger_1 = [
if (> $mine1_ore 0) [
mine1_ore = (- $mine1_ore 10)
echo "You have collected some ore!"
r_additem iron_ore //I think this is the sort of code you write anyway, not so practiced with rpg mode coding
] [
echo "The mine here is completely depleted of resources."
echo "You won't find any ore here."
]
]