Advertisement
AhmedKorwash

Entinty.cs

Feb 7th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 KB | None | 0 0
  1.  public uint VipPoints
  2.         {
  3.             get
  4.             {
  5.                 return _VipPoints;
  6.             }
  7.             set
  8.             {
  9.                 if (value <= 0)
  10.                     value = 0;
  11.  
  12.                 _VipPoints = value;
  13.                 Database.EntityTable.UpdateVipPoints(this.Owner);
  14.             }
  15.         } // quest vip
  16.         public uint VipMonsterPoints
  17.         {
  18.             get
  19.             {
  20.                 return _vipmonestor;
  21.             }
  22.             set
  23.             {
  24.                 if (value <= 0)
  25.                     value = 0;
  26.  
  27.                 _vipmonestor = value;
  28.                 Database.EntityTable.UpdateVipMonestor(this.Owner);
  29.             }
  30.         } // quest vip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement