[COLOR="Silver"]scn blubb
short choice
short random
short Percent
Begin OnActivate
MessageBox "Macht euren Einsatz", "1", "2", "3"
end
Begin GameMode
Set choice to GetButtonPressed
If choice == 0
Set random to 1
Player.RemoveItem Gold001, Menge
elseif choice == 1
Set random to 1
Player.RemoveItem Gold001, Menge
elseif choice == 2
AddItem ........ ; Je nach Geldmengenmethode verändern.
Player.RemoveItem Gold001, Menge
endif
If Random == 1
Set Percent to GetRandomPercent
If Percent <= 10 && choice == 1
Set choice to -1
Set random to 0
Set Percent to 0
elseif Percent >= 10 && choice == 1
AddItem ......
Set random to 0
Set Percent to 0
Set choice to -1
endif
If Percent <= 25 && Choice == 0
Set choice to -1
Set random to 0
Set Percent to 0
elseif Percent >= 26 && choice == 0
AddItem ........ ;[/COLOR] [COLOR="Red"][B]Hier musst du ein GoldItem hinzufügen, du wirst dich auf einen Wert festlegen müssen oder einen Wert unter 100 nehmen müssen, GetRandomPercent geht nicht höher. Allerdings könnte man den Wert von GetRandomPercent noch *2 nehmen. Such dir was auch... [/B][/COLOR]
[COLOR="Silver"]Set choice to -1
Set random to 0
Set Percent to 0
endif
endif
end[/COLOR]