mod_Ibizabar.qsrc 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # mod_IbizaBar
  2. menu_off = 1
  3. if $ARGS[0] = 'start':
  4. gs 'saveposition'
  5. gt 'mod_IbizaBar','buffetbar<<rand(1,4)>>'
  6. end
  7. !The player will be able to replenish the hunger in this file. There must be a possibility to eat in this file.
  8. if $ARGS[0]='buffetbar1':
  9. !Add effect drunk!!
  10. !Add hungry level lower
  11. *clr & cla
  12. '<center><video autoplay src="mod/ibiza/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar1.mp4"></video></center><br>'
  13. 'You walk inside the buffet bar where you meet the other ''Purple Girls'' who are feasting and drinking shots of vodka. They call you over to join them, you sit down by the table, grabbing something to eat, happily taking a shot with them.'
  14. minut += 10
  15. alko += 5
  16. pcs_energy += 10
  17. if pcs_hydra >= 100:
  18. pcs_hydra -= 5
  19. else
  20. pcs_hydra -= 10
  21. end
  22. gs 'stat'
  23. act 'Leave the bar': gt 'restoreposition'
  24. end
  25. if $ARGS[0]='buffetbar2':
  26. !Add hungry level lower
  27. cla
  28. *clr
  29. minut += 10
  30. pcs_energy += 10
  31. pcs_hydra += 10
  32. gs 'stat'
  33. '<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar2.jpg"></center><br>'
  34. 'You walk over the buffet bar, at the entrance you show your bracelet to the waiter. He nods and lets you continue on. You eat and drink until you are completely full.'
  35. act 'Leave the bar': gt 'restoreposition'
  36. end
  37. if $ARGS[0]='buffetbar3':
  38. !Add effect drunk!!
  39. !Add hungry level lower
  40. cla
  41. *clr
  42. minut += 10
  43. alko += 5
  44. pcs_energy += 10
  45. pcs_hydra += 10
  46. gs 'stat'
  47. '<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar3.mp4"></video></center><br>'
  48. 'You walk over to the buffet bar and grab something to eat. After feeling stuffed you feel the need to have some beers. After a few beers you feel that you drank a bit more than you should''ve. You feel somewhat drunk.'
  49. act 'Leave the bar': gt 'restoreposition'
  50. end
  51. if $ARGS[0]='buffetbar4':
  52. !Add effect drunk!!
  53. !Add hungry level lower
  54. cla
  55. *clr
  56. minut += 10
  57. alko += 5
  58. pcs_energy += 10
  59. pcs_hydra += 10
  60. gs 'stat'
  61. '<center><img <<$set_imgh>> src="mod/ibiza/locations/city/citycenter/nightclub/trip01/buffetbar/bar4.jpg"></center><br>'
  62. 'You enter the buffet bar where you grab something to eat. As you''re eating you notice they have an exclusive brand of vodka. You ask the waiter if you could taste it, just a little shot.'
  63. 'He returns after a short with a small glass. As you take a sip of it you feel the alcohol go straight to your head. You need to be careful drinking this stuff it''s quite strong, you might lose control!'
  64. act 'Leave the bar': gt 'restoreposition'
  65. end
  66. --- mod_IbizaBar ---------------------------------