# stol <<<<<<< 320_stol if $ARGS[0] = 'start': cla clr gs 'stat' 'Oddments drawer.' if Stolprezik > 0: 'In the drawer are <> condoms' if Stoltabletki > 0: 'In the drawer are <> birth control pills' if Stollubri > 0: 'In the drawer is lubricant, enough for <> uses.' !if prezik > 0: 'Packing condoms, it <> pc.' !if tabletki > 0: 'Birth control pills <> pc.' !if lubri > 0: 'Lubricant, enough for <> time.' if krem > 0: 'Sunblock <>' if abonement > 0: 'Subscription is valid for <> Occupation' if dildo > 0: 'Realistic Dildo' act 'Close the drawer': cla gt 'stol','fin' end if prezik > 0: act 'Remove condoms from purse': stolIN = input ("How many condoms to put in desk drawer? (Your purse contains <> condoms.)") if stolIN <= 0 or stolIN > prezik: else set stolprezik += stolIN set prezik -= stolIN end gt 'stol','start' end end if Stolprezik > 0: act 'Get condoms from desk': stolOUT = input ("How many condoms to place in purse? (Desk has <> condoms.)") if stolOUT <= 0 or stolOUT > stolprezik: else set stolprezik -= stolOUT set prezik += stolOUT end gt 'stol','start' end end if tabletki > 0: act 'Remove pills from purse': stolIN = input ("How many birth control pills to put in desk drawer? (Your purse contains <> pills.)") if stolIN <= 0 or stolIN > tabletki: else set Stoltabletki += stolIN set tabletki -= stolIN end gt 'stol','start' end end if Stoltabletki > 0: act 'Get pills from desk': stolOUT = input ("How many birth control pills to place in purse? (Desk has <> pills.)") if stolOUT <= 0 or stolOUT > Stoltabletki: else set Stoltabletki -= stolOUT set tabletki += stolOUT end gt 'stol','start' end end if lubri > 0: act 'Remove lubricant from purse': stolIN = input ("How many uses lubricant to put in desk drawer? (Your purse contains <> uses.)") if stolIN <= 0 or stolIN > lubri/5: else set Stollubri += stolIN * 5 set lubri -= stolIN * 5 end gt 'stol','start' end end if Stollubri > 0: act 'Get lubricant from desk': stolOUT = input ("How many uses of lubricant to place in purse? (Desk contains <> uses.)") if stolOUT <= 0 or stolOUT > Stollubri/5: else set Stollubri -= stolOUT * 5 set lubri += stolOUT * 5 end gt 'stol','start' end end if money > 0: act 'Put your money in the drawer': cla stolIN = input ("How much money you want to put in the desk drawer? (Your purse contains <> rubles.)") if stolIN <= 0 or stolIN > money: !'Not correct operation.' else set stolmoney += stolIN set money -= stolIN end gt 'stol','start' end end if stolmoney > 0: act 'Take money from the desk.': cla stolOUT = input ("How much money do you want place in your purse? (There is <> rubles here.)") if stolOUT <= 0 or stolOUT > stolmoney: !'Not correct operation.' else set stolmoney -= stolOUT set money += stolOUT !'You debited <> rubles, now on your account <> rubles.' end gt 'stol','start' end end ======= if $ARGS[0]='start': cla clr gs'stat' 'Storage compartment.' if prezik > 0:'Packaging condoms, therein <> Pieces.' if tabletki > 0:'birth control pills <> Pieces.' if lubri > 0:'lubricant, enough for <> time.' if krem > 0:'Suntan cream <>' if abonement > 0:'Subscription is valid for <> Occupation' if dildo > 0:'faloimitator Realistika' act 'Close the drawer': cla gt'stol','fin' end if money>0: act 'Put money on the table': cla stolIN = input ("How much money you want to put on the table?") if stolIN <= 0 or stolIN > money: !'Not correct operation.' else set stolmoney = stolmoney + stolIN set money = money - stolIN end gt'stol','fin' end end if stolmoney>0: act 'Take the money from the table you <> rubles in the table': cla stolOUT = input ("How much money do you want to take from the table?") if stolOUT <= 0 or stolOUT > stolmoney: !'Not correct operation.' else set stolmoney = stolmoney - stolOUT set money = money + stolOUT !'You have removed from the account <> rubles, now in your account <> rubles.' end gt'stol','fin' end end >>>>>>> 320_stol end <<<<<<< 320_stol if $ARGS[0] = 'fin': cla gt $locM, $metkaM !'if housr = 1 and housrA = 1: set housrA = 0 gt 'sitr' end' ======= if $ARGS[0]='fin': cla gt $locM, $metkaM !'if housr = 1 and housrA = 1: set housrA = 0 gt'sitr' end' >>>>>>> 320_stol end --- stol ---------------------------------