Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. _Center = _this select 0
  2. _dist1=_this select 1
  3. _dist2= _this select 2
  4.  
  5. ?(count _this > 3):_endNight=_this select 3;_startNight=_this select 4; goto "nighttest"
  6. ?(count _this == 3):goto "bigloop"
  7.  
  8. #nighttest
  9. _hours = Date select 3
  10. ?((_hours>=_endNight) && (_hours<_startNight)): goto "waittoactivate"
  11.  
  12. #bigloop
  13. @(Player distance _Center)<_dist2
  14. _i=0
  15. #loop
  16. _height=-0.3
  17. _Rradius=180
  18. _Cloudalpha=1
  19. ?((Player distance _Center)>_dist1):_Cloudalpha= 1-(((Player distance _Center) - _dist1)/(_dist2- _dist1))
  20. _radius=(random 10)+random _Rradius
  21. _angle=(random 360)
  22. _size = 5
  23. _col = 1
  24. _CC=[_col,_col,_col,.3*_Cloudalpha]
  25. drop ["\ca\data\cl_basic", "", "Billboard", 8+random 1,8+random 1, [(getpos Player select 0)+_radius*(sin(_angle)),(getpos Player select 1)+_radius*(cos(_angle)),_height],[0,0,0],5 , 0.2, 0.1568, 0,[_size], [[_col,_col,_col,0],_CC,_CC,_CC,_CC,_CC,_CC,[_col,_col,_col,0]], [0],0,0,"", "",""]
  26. _i=_i+1
  27. ?(_i<1800):goto "loop"
  28. ~1
  29. ?(count _this == 3): goto "bigloop"
  30. goto "nighttest"
  31.  
  32.  
  33.  
  34. #waittoactivate
  35. ~300
  36. goto "nighttest"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement