Advertisement
shekohex

Add & Rmove - Npc

Oct 3rd, 2014
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1.             #region Add & Rmove - Npc
  2.             if ((Now64.Minute == 15) && (Now64.Second == 03) || npc.UID == 1998 )
  3.             {
  4.                // INpc npc = new Network.GamePackets.NpcSpawn();
  5.                 npc.X = 199 ;
  6.                 npc.Y = 199;
  7.                 npc.MapID = 5000;
  8.                 AddNpc(npc);
  9.             }
  10.             else
  11.             {
  12.                 npc.X = 400;
  13.                 npc.Y = 315;
  14.                 npc.MapID = 1002;
  15.                 AddNpc(npc);
  16.             }
  17.             #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement