Advertisement
RezolveDev

Starting Zone - Cataclysm.

Oct 1st, 2014
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.77 KB | None | 0 0
  1. /*
  2. Alliance.
  3. */
  4. SET
  5. @MAP := MAPID,
  6. @ZONE := ZONEID,
  7. @X := XID,
  8. @Y := YID,
  9. @Z := ZID,
  10. @O := OID;
  11.  
  12. UPDATE playercreateinfo SET map=@MAP, zone=@ZONE, position_X=@X, position_Y=@Y, position_Z=@Z, orientation=@O WHERE race IN(1, 3, 4, 7, 11, 22);
  13.  
  14. /*
  15. Horde.
  16. */
  17. SET
  18. @MAP := MAPID,
  19. @ZONE := ZONEID,
  20. @X := XID,
  21. @Y := YID,
  22. @Z := ZID,
  23. @O := OID;
  24.  
  25. UPDATE playercreateinfo SET map=@MAP, zone=@ZONE, position_X=@X, position_Y=@Y, position_Z=@Z, orientation=@O WHERE race IN(2, 5, 6, 8, 10, 9);
  26.  
  27.  
  28. /*
  29. Both Factions.
  30. */
  31. SET
  32. @MAP := MAPID,
  33. @ZONE := ZONEID,
  34. @X := XID,
  35. @Y := YID,
  36. @Z := ZID,
  37. @O := OID;
  38.  
  39. UPDATE playercreateinfo SET map=@MAP, zone=@ZONE, position_X=@X, position_Y=@Y, position_Z=@Z, orientation=@O WHERE race IN(2, 5, 6, 8, 10, 9, 1, 3, 4, 7, 11, 22);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement