Advertisement
Guest User

Untitled

a guest
May 30th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. function ddos_func (player, cmd, target)
  2.     if not target then
  3.         outputChatBox("Bitte gib ein Ziel ein! - Gebrauch: /ddos [Ziel]", player, 125, 0, 0)
  4.     else
  5.         outputChatBox("Du ddost nun "..target.."! ( ͡° ͜ʖ ͡°)", player, math.random(0,255), math.random(0,255), math.random(0,255))
  6.         for i = 1, 100 do
  7.             outputChatBox("Du wirst von "..getPlayerName(player).." geddost!", target, math.random(0,255), math.random(0,255), math.random(0,255))    
  8.         end
  9.     end
  10. end
  11. addCommandHandler("ddos", ddos_func)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement