Resource icon

3.3.5a [TrinityCore] How to change starting zone/area 2023-01-30

[TrinityCore] How to change starting zone/area
Hello, just a simple "how to" change starting zone/area on trinitycore or trinity based emus.

To get the current coordinates of where you are standing please use .gps when ingame.

Query for Alliance
SET
@MAP := 'MAP',
@ZONE := 'ZONE',
@X := 'X Coordinates',
@Y := 'Y Coordinates',
@Z := 'Z Coordinates',
@O := 'Orientation Coordinates';

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);

Query for Horde
SET
@MAP := 'MAP',
@ZONE := 'ZONE',
@X := 'X Coordinates',
@Y := 'Y Coordinates',
@Z := 'Z Coordinates',
@O := 'Orientation Coordinates';

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);

Query for both Alliance & Horde
SET
@MAP := 'MAP',
@ZONE := 'ZONE',
@X := 'X Coordinates',
@Y := 'Y Coordinates',
@Z := 'Z Coordinates',
@O := 'Orientation Coordinates';

UPDATE playercreateinfo SET map=@MAP, zone=@ZONE, position_X=@X, position_Y=@Y, position_Z=@Z, orientation=@O
Liked By 2 members :
Register & Get access to index
WIXXZI
Author WIXXZI
banned

Posts

40

Likes

18

Resources

3

Version 2023-01-30
Downloads 2
Views 857
Last Update
0.00 star(s) 0 ratings
None

3,389

1,271

9,555

428

Top