Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
{ posX = 6917, posY = 16544, posZ = 0 }, --Cabins
To convert it into a valid spawn point, we need to:
1. Retain B41 positioning, as spawn points are converted internally by the game. This means, even in B42, we must divide each value by 300.
2. Now we have the cell values: X=23 and Y=55.
3. Next, we need to convert these global coordinates to local cell coordinates.
Cell X=23 --> 23∗300=6900, posX=6917 --> local posX=6917−6900=17
Cell Y=55 --> 55∗300=16500, posY=16544 --> local posY=16544−16500=44
4. Now we assemble the line according to the spawn point format:
{ worldX = 23, worldY = 55, posX = 17, posY = 44, posZ = 0 }
worldX=Cell X, worldy=Cell Y