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