Advertisement
Mista_Epic

Doge's Blinder E2

Nov 27th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. @name Doge's Blinder E2
  2. @inputs
  3. @outputs C
  4. @persist Playa:entity Pos:vector A B C
  5. @trigger
  6.  
  7. runOnTick(1)
  8.  
  9. # Change the find player by name to whatever,
  10. # Don't complain and say "I want a chat command, You suck at E2"
  11. # This should only be used for one target at a time.
  12. Temp=findPlayerByName("INSERTANAMEHERE")
  13. if(Temp:isPlayer()) {
  14. Playa = Temp
  15. }
  16.  
  17.  
  18.  
  19. if (first() | duped()) {
  20. holoCreate(1,Playa:pos()+vec(0,0,50),vec(-7,-7,-7))
  21. holoMaterial(1,"modeldebug/debugwhite")
  22. holoModel(1,"hqicosphere2")
  23. }
  24.  
  25. holoParentAttachment(1,Playa,"hand")
  26. holoPos(1,(Playa:pos()+vec(0,0,50)))
  27.  
  28. if (first()){
  29. entity():setAlpha(1)
  30. }
  31.  
  32. holoColor(0,vec(50,0,50))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement