# food_menu !!pcs_drank and pcs_ate variables track how much Sveta consumes each day. Vars are reset each day. !!food_loc returns food and beverage menus back to the food_menu. !!How to use the food_menu location in a mod !!Step 1: set up $_eat and $_drink in the mod !!Step 2: add the following three lines to the mod: !!*clr & cla !!killvar '$_drink' !!killvar '$_eat' !!Step 3: call your own $_eat and $_drink afterwards !!Step 4: call this location with gs 'food_menu', 'mod' menu_off = 1 if $ARGS[0] ! 'mod': *clr & cla food_loc = 1 $food_loc = $loc killvar '$_drink' killvar '$_eat' end act 'Return': killvar 'food_loc' minut += 5 gt $loc, $loc_arg end if $loc = 'burger': '
Diner Bystroeshka
' *nl '
> src="images/shared/menus/burger.jpg"

' !'
> src="images/shared/drinks/dinerdrinks.jpg"

' $_eat['0,name'] = 'Onion Rings' $_eat['0,type'] = 'onring' _eat['0,price'] = 80 $_eat['1,name'] = 'Vegie Burger' $_eat['1,type'] = 'vegburg' _eat['1,price'] = 240 $_eat['2,name'] = 'Turkey Burger' $_eat['2,type'] = 'turburg' _eat['2,price'] = 260 $_eat['3,name'] = 'Battered Fish & Fries' $_eat['3,type'] = 'batfish' _eat['3,price'] = 290 $_eat['4,name'] = 'Cheeseburger & Fries' $_eat['4,type'] = 'cheburg' _eat['4,price'] = 310 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 55 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 70 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 110 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 120 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 180 elseif $loc = 'gkafe': '
Borislav''s cafe
' *nl '
> src="images/shared/menus/borislav.jpg"

' !'
> src="images/shared/drinks/cafedrinks.jpg"

' if mid($start_type,1,2) = 'sg' and func('homes_properties', 'has_access', 'parents_home'): $_eat['0,name'] = 'Vegetarian Piroshki' $_eat['0,type'] = 'pirosh' _eat['0,price'] = 0 $_eat['1,name'] = 'Herring Blini' $_eat['1,type'] = 'bliny' _eat['1,price'] = 0 $_eat['2,name'] = 'Golubtsy' $_eat['2,type'] = 'golub' _eat['2,price'] = 0 $_eat['3,name'] = 'Pozharsky Cutlets' $_eat['3,type'] = 'pozhar' _eat['3,price'] = 0 $_eat['4,name'] = 'Rueben Sandwich' $_eat['4,type'] = 'reuben' _eat['4,price'] = 0 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 0 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 0 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 0 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 0 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 0 else $_eat['0,name'] = 'Vegetarian Piroshki' $_eat['0,type'] = 'pirosh' _eat['0,price'] = 100 $_eat['1,name'] = 'Herring Blini' $_eat['1,type'] = 'bliny' _eat['1,price'] = 190 $_eat['2,name'] = 'Golubtsy' $_eat['2,type'] = 'golub' _eat['2,price'] = 210 $_eat['3,name'] = 'Pozharsky Cutlets' $_eat['3,type'] = 'pozhar' _eat['3,price'] = 290 $_eat['4,name'] = 'Rueben Sandwich' $_eat['4,type'] = 'reuben' _eat['4,price'] = 340 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 60 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 80 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 120 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 130 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 200 end elseif $loc = 'brothel': '

Hotel Bar

' *nl '
> src="images/shared/drinks/bardrinks.jpg"

' $_eat['0,name'] = 'Toasted rye snacks' $_eat['0,type'] = 'ryesna' _eat['0,price'] = 30 $_eat['1,name'] = 'Bowl of flavoured crisps' $_eat['1,type'] = 'crisps' _eat['1,price'] = 40 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Beer on tap' $_drink['1,type'] = 'bev_bee' _drink['1,price'] = 60 $_drink['2,name'] = 'Vodka' $_drink['2,type'] = 'bev_vod' _drink['2,price'] = 120 $_drink['3,name'] = 'Scotch' $_drink['3,type'] = 'bev_sco' _drink['3,price'] = 140 $_drink['4,name'] = 'Glass of Wine' $_drink['4,type'] = 'bev_win' _drink['4,price'] = 160 $_drink['5,name'] = 'Black Russian' $_drink['5,type'] = 'bev_bla' _drink['5,price'] = 250 if hotelWhore = 1: $_drink['6,name'] = 'Blue-blooded Russian' $_drink['6,type'] = 'bev_bbr' _drink['6,price'] = 0 end elseif $loc = 'cafe_parco': '

Cafe "Del Parco"

' *nl '
> src="images/shared/menus/del_parco.jpg"

' !'
> src="images/shared/drinks/cafedrinks.jpg"

' $_eat['0,name'] = 'Vegetarian Piroshki' $_eat['0,type'] = 'pirosh' _eat['0,price'] = 100 $_eat['1,name'] = 'Herring Blini' $_eat['1,type'] = 'bliny' _eat['1,price'] = 190 $_eat['2,name'] = 'Golubtsy' $_eat['2,type'] = 'golub' _eat['2,price'] = 210 $_eat['3,name'] = 'Pozharsky Cutlets' $_eat['3,type'] = 'pozhar' _eat['3,price'] = 290 $_eat['4,name'] = 'Rueben Sandwich' $_eat['4,type'] = 'reuben' _eat['4,price'] = 340 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 60 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 80 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 120 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 130 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 200 elseif $loc = 'city_kafe': '
The Roadhouse
' *nl '
> src="images/shared/menus/roadhouse.jpg"

' !'
> src="images/shared/drinks/dinerdrinks.jpg"

' $_eat['0,name'] = 'Onion Rings' $_eat['0,type'] = 'onring' _eat['0,price'] = 80 $_eat['1,name'] = 'Vegie Burger' $_eat['1,type'] = 'vegburg' _eat['1,price'] = 240 $_eat['2,name'] = 'Turkey Burger' $_eat['2,type'] = 'turburg' _eat['2,price'] = 260 $_eat['3,name'] = 'Battered Fish & Fries' $_eat['3,type'] = 'batfish' _eat['3,price'] = 290 $_eat['4,name'] = 'Cheeseburger & Fries' $_eat['4,type'] = 'cheburg' _eat['4,price'] = 310 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 55 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 70 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 110 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 120 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 180 elseif $loc = 'lakecafe': '
The Lake Cafe
' *nl '
> src="images/shared/drinks/cafedrinks.jpg"

' $_eat['0,name'] = 'Vegetarian Piroshki' $_eat['0,type'] = 'pirosh' _eat['0,price'] = 100 $_eat['1,name'] = 'Herring Blini' $_eat['1,type'] = 'bliny' _eat['1,price'] = 190 $_eat['2,name'] = 'Golubtsy' $_eat['2,type'] = 'golub' _eat['2,price'] = 210 $_eat['3,name'] = 'Pozharsky Cutlets' $_eat['3,type'] = 'pozhar' _eat['3,price'] = 290 $_eat['4,name'] = 'Rueben Sandwich' $_eat['4,type'] = 'reuben' _eat['4,price'] = 340 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 60 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 80 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 120 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 130 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 200 elseif $loc = 'pushkin_cafe': '
Tiny Cafe
' *nl '
> src="images/shared/drinks/cafedrinks.jpg"

' $_eat['0,name'] = 'Onion Rings' $_eat['0,type'] = 'onring' _eat['0,price'] = 80 $_eat['1,name'] = 'Vegie Burger' $_eat['1,type'] = 'vegburg' _eat['1,price'] = 240 $_eat['2,name'] = 'Turkey Burger' $_eat['2,type'] = 'turburg' _eat['2,price'] = 260 $_eat['3,name'] = 'Battered Fish & Fries' $_eat['3,type'] = 'batfish' _eat['3,price'] = 290 $_eat['4,name'] = 'Cheeseburger & Fries' $_eat['4,type'] = 'cheburg' _eat['4,price'] = 310 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 60 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 80 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 120 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 130 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 200 elseif $loc = 'ParkKafe': '
Park Cafe
' *nl '
> src="images/shared/drinks/cafedrinks.jpg"

' $_eat['0,name'] = 'Vegetarian Piroshki' $_eat['0,type'] = 'pirosh' _eat['0,price'] = 100 $_eat['1,name'] = 'Herring Blini' $_eat['1,type'] = 'bliny' _eat['1,price'] = 190 $_eat['2,name'] = 'Golubtsy' $_eat['2,type'] = 'golub' _eat['2,price'] = 210 $_eat['3,name'] = 'Pozharsky Cutlets' $_eat['3,type'] = 'pozhar' _eat['3,price'] = 290 $_eat['4,name'] = 'Rueben Sandwich' $_eat['4,type'] = 'reuben' _eat['4,price'] = 340 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'bev_kva' _drink['1,price'] = 60 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'bev_jui' _drink['2,price'] = 80 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'bev_tea' _drink['3,price'] = 120 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'bev_cof' _drink['4,price'] = 130 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'bev_mil' _drink['5,price'] = 200 elseif $loc = 'qwBarPolet': '
Bar "Rabotnik"
' *nl '
> src="images/shared/drinks/bardrinks.jpg"

' $_eat['0,name'] = 'Toasted rye snacks' $_eat['0,type'] = 'ryesna' _eat['0,price'] = 30 $_eat['1,name'] = 'Bowl of flavoured crisps' $_eat['1,type'] = 'crisps' _eat['1,price'] = 40 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Beer on tap' $_drink['1,type'] = 'bev_bee' _drink['1,price'] = 60 $_drink['2,name'] = 'Vodka' $_drink['2,type'] = 'bev_vod' _drink['2,price'] = 120 $_drink['3,name'] = 'Scotch' $_drink['3,type'] = 'bev_sco' _drink['3,price'] = 140 $_drink['4,name'] = 'Glass of Wine' $_drink['4,type'] = 'bev_win' _drink['4,price'] = 160 $_drink['5,name'] = 'Black Russian' $_drink['5,type'] = 'bev_bla' _drink['5,price'] = 250 elseif $loc = 'restoran': '
Babel
' *nl '
> src="images/shared/menus/babel.jpg"

' !'
> src="images/shared/drinks/fancydrinks.jpg"

' $_eat['0,name'] = 'Vareniki with Potatoes' $_eat['0,type'] = 'varenfan' _eat['0,price'] = 760 $_eat['1,name'] = 'Borscht and French Baguette' $_eat['1,type'] = 'borfan' _eat['1,price'] = 900 $_eat['2,name'] = 'Atlantic Salmon Steak' $_eat['2,type'] = 'salfan' _eat['2,price'] = 1000 $_eat['3,name'] = 'Beef & Mushroom Stroganoff' $_eat['3,type'] = 'strofan' _eat['3,price'] = 1200 $_eat['4,name'] = 'Red Caviar Blinchiki' $_eat['4,type'] = 'blifan' _eat['4,price'] = 1360 $_drink['0,name'] = 'Spring Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Imported Tea' $_drink['1,type'] = 'bev_tea' _drink['1,price'] = 180 $_drink['2,name'] = 'Imported Beer' $_drink['2,type'] = 'bev_bee' _drink['2,price'] = 200 $_drink['3,name'] = 'Vodka Martini' $_drink['3,type'] = 'bev_mar' _drink['3,price'] = 400 $_drink['4,name'] = 'Glass of Wine' $_drink['4,type'] = 'bev_win' _drink['4,price'] = 800 $_drink['5,name'] = 'Glass of Champagne' $_drink['5,type'] = 'bev_cha' _drink['5,price'] = 900 elseif $loc = 'uni_cafe': '
University cafe
' *nl '
> src="images/shared/drinks/cafedrinks.jpg"

' $_eat['0,name'] = 'Vegetarian Piroshki' $_eat['0,type'] = 'pirosh' _eat['0,price'] = 100 $_eat['1,name'] = 'Herring Blini' $_eat['1,type'] = 'bliny' _eat['1,price'] = 190 $_eat['2,name'] = 'Golubtsy' $_eat['2,type'] = 'golub' _eat['2,price'] = 210 $_eat['3,name'] = 'Pozharsky Cutlets' $_eat['3,type'] = 'pozhar' _eat['3,price'] = 290 $_eat['4,name'] = 'Rueben Sandwich' $_eat['4,type'] = 'reuben' _eat['4,price'] = 340 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'only_cost_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Kvass' $_drink['1,type'] = 'only_cost_kva' _drink['1,price'] = 60 $_drink['2,name'] = 'Juice' $_drink['2,type'] = 'only_cost_jui' _drink['2,price'] = 80 $_drink['3,name'] = 'Spiced Tea' $_drink['3,type'] = 'only_cost_tea' _drink['3,price'] = 120 $_drink['4,name'] = 'Black Coffee' $_drink['4,type'] = 'only_cost_bco' _drink['4,price'] = 130 $_drink['5,name'] = 'Milkshake' $_drink['5,type'] = 'only_cost_mil' _drink['5,price'] = 200 elseif $loc = 'city_coffee_hole': $loc_arg = 'eat' '
Cafe "Coffee hole"
' *nl '
> src="images/shared/drinks/cafedrinks.jpg"

' $_eat['0,name'] = 'Biscotti' $_eat['0,type'] = 'only_cost_light_snack' _eat['0,price'] = 100 $_eat['1,name'] = 'Cannoli' $_eat['1,type'] = 'only_cost_snack' _eat['1,price'] = 120 $_eat['2,name'] = 'Muffin' $_eat['2,type'] = 'only_cost_snack' _eat['2,price'] = 120 $_eat['3,name'] = 'Croissants' $_eat['3,type'] = 'only_cost_snack' _eat['3,price'] = 120 $_eat['4,name'] = 'Danish' $_eat['4,type'] = 'only_cost_snack' _eat['4,price'] = 120 $_eat['5,name'] = 'Cookies' $_eat['5,type'] = 'only_cost_light_snack' _eat['5,price'] = 100 $_eat['6,name'] = 'Miagkie Plushki s Sakharom' $_eat['6,type'] = 'only_cost_snack' _eat['6,price'] = 120 $_eat['7,name'] = 'Mannik' $_eat['7,type'] = 'only_cost_snack' _eat['7,price'] = 120 $_eat['8,name'] = 'Korzinochki' $_eat['8,type'] = 'only_cost_snack' _eat['8,price'] = 120 $_drink['0,name'] = 'Tea' $_drink['0,type'] = 'only_cost_tea' _drink['0,price'] = 120 $_drink['1,name'] = 'Espresso' $_drink['1,type'] = 'only_cost_esp' _drink['1,price'] = 100 $_drink['2,name'] = 'Black Coffee' $_drink['2,type'] = 'only_cost_bco' _drink['2,price'] = 120 $_drink['3,name'] = 'Cappuccino' $_drink['3,type'] = 'only_cost_cof' _drink['3,price'] = 150 $_drink['4,name'] = 'Cafe Latte' $_drink['4,type'] = 'only_cost_cof' _drink['4,price'] = 150 $_drink['5,name'] = 'Iced Latte' $_drink['5,type'] = 'only_cost_cof' _drink['5,price'] = 150 elseif $loc = 'city_nightclub': '
Bar "Nightclub"
' *nl '
> src="images/shared/drinks/bardrinks.jpg"

' $_eat['0,name'] = 'Toasted rye snacks' $_eat['0,type'] = 'ryesna' _eat['0,price'] = 30 $_drink['0,name'] = 'Water' $_drink['0,type'] = 'bev_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Energy Drink' $_drink['1,type'] = 'bev_energy_drink' _drink['1,price'] = 60 $_drink['2,name'] = 'Beer on tap' $_drink['2,type'] = 'bev_bee' _drink['2,price'] = 60 $_drink['3,name'] = 'Vodka' $_drink['3,type'] = 'bev_vod' _drink['3,price'] = 120 $_drink['4,name'] = 'Scotch' $_drink['4,type'] = 'bev_sco' _drink['4,price'] = 140 $_drink['5,name'] = 'Glass of Wine' $_drink['5,type'] = 'bev_win' _drink['5,price'] = 160 $_drink['6,name'] = 'Black Russian' $_drink['6,type'] = 'bev_bla' _drink['6,price'] = 250 $_drink['7,name'] = 'Champagne' $_drink['7,type'] = 'bev_cha' _drink['7,price'] = 220 $_drink['8,name'] = 'Vodka Martini' $_drink['8,type'] = 'bev_mar' _drink['8,price'] = 250 $_drink['9,name'] = 'Fancy cocktail' $_drink['9,type'] = 'bev_cocktail' _drink['9,price'] = 300 elseif $loc = 'katja_nightclub' or $loc = 'katja_nightclub_sex': '
Bar "Nightclub"
' *nl if $loc = 'katja_nightclub_sex': '
> src="images/characters/pavlovsk/school/girl/katja/uni/nightclub/hot_bartender.jpg">
' else '
> src="images/shared/drinks/bardrinks.jpg"

' end $_drink['0,name'] = 'Water' $_drink['0,type'] = 'only_cost_wat' _drink['0,price'] = 0 $_drink['1,name'] = 'Energy Drink' $_drink['1,type'] = 'only_cost_bev_energy_drink' _drink['1,price'] = 60 $_drink['2,name'] = 'Beer on tap' $_drink['2,type'] = 'only_cost_bev_bee' _drink['2,price'] = 60 $_drink['3,name'] = 'Vodka' $_drink['3,type'] = 'only_cost_bev_vod' _drink['3,price'] = 120 $_drink['4,name'] = 'Scotch' $_drink['4,type'] = 'only_cost_bev_sco' _drink['4,price'] = 140 $_drink['5,name'] = 'Glass of Wine' $_drink['5,type'] = 'only_cost_bev_win' _drink['5,price'] = 160 $_drink['6,name'] = 'Black Russian' $_drink['6,type'] = 'only_cost_bev_bla' _drink['6,price'] = 250 $_drink['7,name'] = 'Champagne' $_drink['7,type'] = 'only_cost_bev_cha' _drink['7,price'] = 220 $_drink['8,name'] = 'Vodka Martini' $_drink['8,type'] = 'only_cost_bev_mar' _drink['8,price'] = 250 $_drink['9,name'] = 'Fancy cocktail' $_drink['9,type'] = 'only_cost_bev_cocktail' _drink['9,price'] = 300 end $_str = '
' food_loop = 0 :loop_diner_drinks $temp_bcolor = func('themes', 'alt_color', $temp_bcolor) $_str += '' !! column 1 - food if $_eat['<>,name'] = '': $_str += '' $_str += '' else $_str += '' $_str += '' end !! separator $_str += '' !! column 2 - drinks if $_drink['<>,name'] = '': $_str += '' $_str += '' else $_str += '' $_str += '' end $_str += '' food_loop += 1 if food_loop < arrsize('$_drink')/3:jump 'loop_diner_drinks' $_str += '
' + $_eat['<>,name'] + '' if money >= _eat['<>,price']: $_str += '' + iif(_eat['<>,price'] ! 0, str(_eat['<>,price']),'Free') + '' else $_str += str(_eat['<>,price']) end $_str += iif(_eat['<>,price'] ! 0, ' ₽ ', '  ') + '> border="0" width="50" cellpadding="0" cellspacing="0">' + $_drink['<>,name'] + '' if money >= _drink['<>,price']: $_str += '' + iif(_drink['<>,price'] ! 0, str(_drink['<>,price']),'Free') + '' else $_str += str(_drink['<>,price']) end $_str += iif(_drink['<>,price'] ! 0, ' ₽ ', '  ') + '
' '
Please place your order


'+$_str killvar '$_str' killvar 'food_loop' killvar '$temp_bcolor' --- food_menu ---------------------------------