Jump to content

Urwigo - changing zone status


Repmul

Recommended Posts

AFAIK no :(

In this case I would recommend you to write the If/Else commands as code and not with the blocks (it's easier :))

function getZone(zoneName) 
    if (zoneName == "zone1") then
    	return zone1;
    elseif (zoneName == "zone2") then
    	return zone2;
    -- And so on
    end
end
-- This only works if you also name the zones with an identifier (under description)

Or has lua a switch statement?

Link to comment
16 hours ago, capoaira said:

switch statement

 

You can bodge one together by indexing into a table with named keys, I think. I'm not sure if this works on all players. 

 

local LookupTable = {
    zoneA = ...,
    zoneB = ...,
    zoneC = ...,
    ...
}

function getName(zoneName)
    return LookupTable[zoneName]
end

getName("zoneA")

 

In theory this is as efficient as a jumptable (with some overhead for the hashmap lookup.)

Edited by Hügh
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...