Advertisement
Guest User

smokeshit.sqf

a guest
Jun 2nd, 2014
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. /*
  2. by: ZeroK00L
  3. */
  4. [] spawn {
  5. hint "You roll a fatty and smoke it! Damn! That shit is the chronic!";
  6. player removeMagazine 'ItemKiloHemp';
  7. Remove_Drug_effects =
  8. {
  9. {
  10. ppEffectDestroy _x;
  11. } forEach (_this select 0);
  12. ppEffectDestroy ppe2;
  13. ppEffectDestroy ppe3;
  14. setaperture 0;
  15. };
  16. _time = time;
  17. _effects = [];
  18. player playMoveNow "ActsPercMstpSnonWpstDnon_sceneBardak01";
  19. while {true} do
  20. {
  21. ppe2 = ppEffectCreate ["chromAberration", 1555];
  22. _effects = _effects + [ppe2];
  23. ppe2 ppEffectAdjust [random 0.25,random 0.25,true];
  24. ppe2 ppEffectCommit 1;
  25. ppe2 ppEffectEnable true;
  26. ppe3 = ppEffectCreate ["radialBlur", 1555];
  27. _effects = _effects + [ppe3];
  28. ppe3 ppEffectEnable true;
  29. ppe3 ppEffectAdjust [random 0.02,random 0.02,0.15,0.15];
  30. ppe3 ppEffectCommit 1;
  31. sleep random(1);
  32. if (_time + 60 < time) exitWith {[_effects] call Remove_Drug_effects;};
  33. };
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement