Tagged Questions

1
vote
2answers
41 views

How to create a directory in Lua ?

Is it possible to create a directory in lua ? If so, how ?
0
votes
1answer
32 views

wxlua bindings does not work with my shaderobjects made using SWIG

Hi, I made a class using wxwdigets //wrapper over wxIPV4address class IPV4addressLua : public wxIPV4address { public: IPV4addressLua(); ~IPV4addr …
3
votes
3answers
59 views

Lua unpack bug?

I Have stumbled on a weird behavior in Lua unpack function table1 = {true, nil, true, false, nil, true, nil} table2 = {true, false, nil, false, nil, true, nil} a1,b1,c1,d1,e1,f1, …
2
votes
2answers
84 views

Can Lua ‘Timeout” ?

Lets say I am running a script and the game client waits for the script to be finished before it updates. Can Lua do somthing of a 'timeout'? Like, can i set a priority on the up …
1
vote
1answer
41 views

Sorting Tables - Lua

I am trying to sort but there is a nil. How can i get around this? Code im useing: (sorting it by name and HPs. in case there is duplicate HPs) T = { {Name = "Mark", HP = 54, Br …
0
votes
1answer
40 views

Lua - Table in a Table Printing and Sorting

T = { {Name = "Mark", HP = 54, Breed = "Ghost"}, {Name = "Stan", HP = 24, Breed = "Zombie"}, {Name = "Juli", HP = 100, Breed = "Human"}}, Questions: How would I Print just the na …
0
votes
1answer
24 views

Sorting Tables Twice in one Function - LUA

Want the function to sort the table by HP but if duplicate HPs then sorts by name. When i run this function it just groups the duplicate HPs together in no order by the name. T = …
0
votes
3answers
63 views

Functions in a Table - Lua

I have a table that has multiple functions in it. I'm trying to write a single function that will go through and use all the functions by passing random information into it. M …
0
votes
2answers
75 views

Save reference to Lua’s userdata

Not really know how to ask so bare with me please :) #1 Lua: local test = Test(); #2 C: //creating "lua's test" luaL_newmetatable(L, "someTable"); lua_userdata *userData = (lu …
0
votes
3answers
58 views

Do Javascript prototypes have something equivalent to Lua’s __index & __newindex?

I want to define a behavior on Javascript objects that kicks in when the referenced attribute/method doesn't exist. In Lua you can do this with metatables and the __index & __n …
0
votes
2answers
82 views

How to create nested Lua tables using the C API

I want to create a table like myTable = { [0] = { ["a"] = 4, ["b"] = 2 }, [1] = { ["a"] = 13, ["b"] = 37 } } using the C API? My current approach is lua_createtable(L, …
1
vote
2answers
44 views

Lua Alien - Calling Specific API

Hello all, I have currently run into an issue while toying with Lua and the alien module to use Win32 API and such from Lua scripts. So far I have only had a single issue with ali …
0
votes
3answers
33 views

Eclipse doesn’t recognize lua files after installing the lua plugin

I downloaded Eclipse Classic off of the Eclipse website then the Lua Eclipse IDE plugin. I followed the install instructions but Eclipse doesn't seem to recognize or be able to und …
0
votes
3answers
87 views

Placeholder evaluation of lua code

I have an application that uses lua files for some of its more obscure configuration options. As such it mostly contains calls into the app to create things and alter properties; …
0
votes
1answer
70 views

Luabind Function using std::string& Reference with pure_out_value policy not possible?

I'am trying to return a string from a function but it doesn't compile. When I replace the std::string& type with int& it compiles, however I want to return additionally to …

1 2 3 4 5 16 next
15 30 50 per page