[Solved] New function map.getLevelCoord() weirdness

Ask for help about creating mods and scripts for Grimrock 2 or share your tips, scripts, tools and assets with other modders here. Warning: forum contains spoilers!
Post Reply
MrChoke
Posts: 324
Joined: Sat Oct 25, 2014 7:20 pm

[Solved] New function map.getLevelCoord() weirdness

Post by MrChoke »

I tried out the map.getlevelCoord() function. When I wrap print() around it, the output I get is:
0 0 0

It displays all 3 coordinates correctly for the map. However, its type is "number", not "string". I can't seem to get individual portions of the output. For example, how do I get the "Y" value. I have tried pairs() on it. Nope, its a number not a table. I have tried tostring() on it. With this I only get the 1st number, the X coordinate.

Is there a lua command I can do on this to break it up into its 3 values? Also, how can print() display a number as 3 numbers??? I am confused.


UPDATE: SOLVED

Solved it myself. getLevelCoord() is a multiple return function. So you have to capture all the return values in separate variables. Like this:

local x, y, z = party.map:getLevelCoord()

x, y and z have the individual values. I am going become a LUA expert doing this modding.
Post Reply