Advertisement
Guest User

Untitled

a guest
Nov 24th, 2015
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.43 KB | None | 0 0
  1.  Public Property IsLooting As Boolean
  2.         Get
  3.             If WaitForLoot >= Date.Now Then
  4.                 Return True
  5.             Else
  6.                 Return False
  7.             End If
  8.         End Get
  9.         Set(value As Boolean)
  10.             If value = True Then
  11.                 WaitForLoot = Date.Now.AddSeconds(3)
  12.             Else
  13.                 WaitForLoot = Date.Now
  14.             End If
  15.         End Set
  16.     End Property
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement