Advertisement
Guest User

Untitled

a guest
May 9th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. --- Modified VialDropper by BolloScripts.
  2. --- Checks every 20-30second if you have more than 10 flasks.
  3. --- If you have over 10 empty vials, it will drop them on the ground under your character.
  4. while (true) do
  5. if(Self.Flasks() > 10) then
  6. Self.DropFlasks(Self.Position().x, Self.Position().y, Self.Position().z)
  7. end
  8. wait(20000, 30000)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement