11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
/*
|
|
Monster Slots
|
|
By Ray Miller
|
|
kaynekayne@bigfoot.com
|
|
*/
|
|
void main()
|
|
{
|
|
if(GetLocalInt(GetPCSpeaker(), "smach_iCurrentBet") > 1)
|
|
SetLocalInt(GetPCSpeaker(), "smach_iCurrentBet", GetLocalInt(GetPCSpeaker(), "smach_iCurrentBet") - 1);
|
|
}
|