mod_IbizaDanceFloor.qsrc 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # mod_IbizaDanceFloor
  2. $loc = 'mod_IbizaDanceFloor'
  3. $locM = 'mod_IbizaDanceFloor'
  4. $menu_loc = 'mod_IbizaDanceFloor'
  5. gs 'themes', 'indoors'
  6. if $args[1] ! '': $OutLoc = $args[1]
  7. if $args[0] = '':
  8. $location_type = 'private'
  9. $loc_arg = ''
  10. $locM_arg = ''
  11. $menu_arg = ''
  12. menu_off = 0
  13. killvar '$locclass'
  14. *clr & cla
  15. '<center><video autoplay src="mod/ibiza/locations/city/citycenter/nightclub/trip01/dancestart.mp4"></video></center><br>'
  16. gs 'stat'
  17. if ((hour < 19) and (week = 2)) or ((hour < 19) and (week = 3)) or ((hour < 17) and (week = 4)) or ((hour < 19) and (week = 5)) or ((hour < 15) and (week = 6)) :
  18. act 'Go to security guard': gt 'mod_IbizaGuard','start'
  19. act 'Go to the toilet': gt 'mod_IbizaToilet','start'
  20. act 'Go to the buffet bar': gt 'mod_IbizaBar','start'
  21. act 'Dance!': gt 'mod_IbizaDance','start'
  22. end
  23. if (week = 2) and (hour > 17): act 'Go to cabin': gt 'mod_IbizaDay3','VIP'
  24. if (week = 3) and (hour > 18): act 'Christian approaches you': gt 'mod_IbizaDay4','VIP'
  25. if (week = 4) and (hour > 16): act 'Christian approaches you': gt 'mod_IbizaDay5','christian'
  26. if (week = 5) and (hour > 18): act 'Christian approaches you': gt 'mod_IbizaDay6','departure'
  27. if (week = 6) and (hour > 14): act ' The boat has docked!!': gt 'mod_IbizaDay7','boat'
  28. end
  29. --- mod_IbizaDanceFloor ---------------------------------