mod_Ibiza.qsrc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # mod_Ibiza
  2. !input mod entry point here. this will be checked on every location, please keep it clean and brief to avoid game lag
  3. if $curloc = 'club':
  4. *clr
  5. gt 'mod_Ibiza_club', $ARGS[0], $ARGS[1], $ARGS[2]
  6. end
  7. !!* text needed
  8. if $location_type = 'public_outdoors' and ibizaQW = 2 and ibiza_leaveday + 1 < daystart and rand(0,20) = 0:
  9. if money >= 25000:
  10. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
  11. *nl
  12. 'text needed for being confronted about not showing up and returning money'
  13. money -= 25000
  14. ibizaQW = 1
  15. act 'Pay back Eric':gt curloc
  16. else
  17. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/nightclub/club11.jpg"></center>'
  18. *nl
  19. 'text needed for being taken and put to use in Sauna for not having 25000 you were paid'
  20. cla & *clr
  21. minut+=60
  22. ibiza_owed = 25000 - money
  23. workDolg = ibiza_owed
  24. ibizaQW = 3
  25. money = 0
  26. act 'Look around': gt 'sauna', 'saunaroom'
  27. end
  28. end
  29. if $location_type = 'public_outdoors' and ibizaQW = 4 and rand(0,20) = 0:
  30. ibizaQW = 1
  31. 'test abduction'
  32. act 'GO': gt 'abduction', 'start'
  33. end
  34. --- mod_Ibiza ---------------------------------