Ok, so here is my problem.
I'm trying to write a script where there is 3 diffrent events and i want to choose one of them randomly.
I wrote something like this (this is only a part of whole script):
#choose_event
_Dice = Random 9
? _Dice <2:goto "rare"
? _Dice >=2 and <=5:goto "common1"
? _Dice >5:goto "common2"
...but it does't work. There is error "Wrong number in fraze" at ? _Dice >=2 and /#/<=5:goto "common1" but i don't know whats wrong in it at all. I serched forum for some kind of anserw and i found something like this when i looked for "Random events" fraze:
_RNum = Random 4
? _RNum >=0 && <1:Hint "Message 1"
? _RNum >=1 && <2:Hint "Message 2"
? _RNum >=2 && <3:Hint "Message 3"
? _RNum >=3 && <4:Hint "Message 4"
? _RNum == 4: Hint "Special Improbable Message!"
Its preaty much the same thing i wrote, but it doesn't work either and had same error.
How i can resolve this?