Lua is a powerful, fast, lightweight, embeddable scripting language. It's dynamically typed, runs by interpreting bytecode and has automatic garbage collection. It is often referred to as an "extensible extension language".

learn more… | top users | synonyms

2
votes
1answer
23 views

Inaccuracy when using modulo in Lua

I used modulo (%) in Lua just a moment ago and I noticed that it was for some reason very inaccurate. I used it in World of Warcraft, but I would assume that it's at least somewhat up to date. ...
0
votes
1answer
26 views

Get new position x distance away from another position using a slope

Excuse me if I phrased the title wrong, I am not great with math and don't know the right term, but I figure someone will edit it correctly. I am creating a script in Lua and I have a target location ...
-1
votes
1answer
41 views

Stuck in while loop

I have some basic code that i'm using in a tunneling program in ComputerCraft and I can't seem to break this loop. function enderStore() turtle.select(2) turtle.placeDown() while true do ...
-1
votes
0answers
36 views

Integrating Lua into a project using autotools [closed]

I've got a project that I'm building with autotools, and has Lua in the lib/lua-5.2.2 directory inside the project's hierarchy. The problem I'm having is that I'd like to compile and statically link ...
2
votes
0answers
65 views

How do I configure DScintilla to highlight Lua with certain style attributes?

I'm trying to replicate the syntax highlighting style for Lua shown here: I'm using DScintilla, the VLC component to support Scintilla in Delphi. I read every single module of Dscintilla to see the ...
0
votes
2answers
58 views

Can I use the function yes () to return 1

Is the following function is correct? local function yes() return 1 end local function no() return 0 end Can I use it to set the values ​​of the variables in this way? local May_I = yes() if ...
0
votes
4answers
25 views

I need to split string from a character

My string is text1,text2 I want to split text1 and text2 by using the ','.
0
votes
1answer
26 views

How to Move Objects in Fixed Distance in Corona SDK

I want to move the Object in x axis for Fixed Distance . say I have object sprite, I have Placed in Scene . my Requirement is i want to move the Object for X to Some -X and -X to X. function ...
0
votes
2answers
31 views

Balancing equally-sized arrays

I don't know it the correct name is "balance". Well I have an array of 2n positive integer elements and I want to split into two n elements array, with the minimum difference between their average. ...
0
votes
2answers
18 views

Corona SDK - Handling Touch Events in Lua

I am working on a simple app in Lua to get a better feel for the Corona SDK: a red ball bounces around the screen and switches directions once the user touches it. However, whenever I click on the ...
2
votes
1answer
41 views

How do you read a varible from another variable

Horse_Apple = "Happy Horse" local var = Animal() .. "_" .. Food() print(var) I hope someone here understands the problem i'm trying to solve here. Animal() returns "Horse" and Food() returns ...
3
votes
1answer
45 views

lua: module import regarding local scope

There are two script files with the following script //parent.lua function scope() local var = "abc" require "child" end //child.lua print(var) This way, child.lua will print a nil value ...
0
votes
1answer
47 views

Graph Visualization Represented in a Circle: How To

Graph Visualization represented in a Circle: How To I am trying to represent a plotted graph line around a circle. Where the center is 0 Intervals of 45 degrees / 8 values. Greatest value = 1 / ...
0
votes
1answer
18 views

Hand over global custom data to LUA-implemented functions

within my LUA-application I have some own functions defined that are registered with lua_register("lua_fct_name","my_fct_name") so that they are known to the LUA script. Now I have some custom/user ...
2
votes
2answers
31 views

Catch output of lua_error()?

Currently I'm using lua out of an console application, means whenever there is an error in script and lua_error() is called, the related text it is printed. Now I have to move that thingy into a ...
1
vote
1answer
38 views

Fit a curve in angle line?

I have two lines that start and end at random locations on a screen and create an angle. I then have an object follow these two lines. However at the intersection between the first and second line, ...
0
votes
1answer
51 views

Get the the max depth of a tree in Lua

I've seen this in other languages but my Lua implementation is tripping me up. I have a tree structure and I'm trying to write a recursive function to find the max depth of a tree. A node is a table ...
3
votes
1answer
41 views

Changing images in Lua

I am making a game in Lua that requires an image to change multiple times. The way I am doing it right now is to display a new image over the old one. This works but it causes a lot of lag. I am ...
1
vote
1answer
48 views

How do I run a .lua script? [closed]

I need to execute a .lua script using windows command line (cmd). I've got my .lua file in the same folder in which my lua.exe is. I've tried several ways of running the file but I can't figure out ...
1
vote
1answer
22 views

Why i can't run lua script in redis after redis restart?

Im having issues running a Lua script, here is what i am doing: I load script to redis with LOAD SCRIPT and get SHA of my script. I test my script with SHA and it's OK. I do a SAVE(BGSAVE), SHUTDOWN ...
4
votes
2answers
65 views

How to decide using lua_call() or lua_pcall()?

I know the basic difference between lua_call() or lua_pcall(), the later one provides more error details. Is there any other difference? How to decide which to use?
3
votes
1answer
54 views

How to install Lua on windows

I'm new to the Lua .I need to know how to install Lua on Windows? I tried but i'm unable to run the sample. When I'm trying to compile the sample it showing 100% success but when i click the run ...
0
votes
1answer
36 views

collision event and display.newGroup. How to connect them together? Corona

I have a problem. According to the code below, I create an object x times (in this case 20 times) and add into a ballGroup. Moreover every one object should has body and react on "collision" physics ...
0
votes
1answer
15 views

Redis Lua Doesn't Recognize Inf?

I'm writing a Lua script in Redis, and have one line that's breaking everything: local to_remove = redis.call('ZRANGE', KEYS[1], -5, "+inf") Returns: redis.exceptions.ResponseError: Error running ...
0
votes
2answers
51 views

Looping through tables in a table in Lua

I've hit a complete dead end with this. This is probably going to be something incredibly basic and it will most likely result in me smashing my head into a wall for having a major brain fart. My ...
3
votes
5answers
44 views

Lua - gmatch scientific notation string to number

I am trying to convert a string of scientific notation numbers into actual numbers. My test string is formatted like so: myString = 1.000000000000000E+00, 2.000000000000000E+02, ...
-2
votes
1answer
22 views

Finding nearest unvisited exit by using a table of coordinates and cardinal exits in Lua [closed]

I am trying to code a lua script for a mud for which I have pgrogrammed a set of scripts. The mud recently has begun sending out room coordinates (, y and height) along with available exits (north ...
2
votes
1answer
43 views

Lua with the Freebase API [closed]

I need to use the Freebase API in Lua, but Google requires you to use SSL. Lua doesn't have built-in networking support, so I have to use external stuff like LuaSocket and 'LuaSec`. The problem is ...
1
vote
1answer
32 views

Creating table within multi-dimensional arrays elements and drawing it

I'm trying to make array of enemies and draw it, but i keep getting errors, if it is not about array itself its about bad argument in draw function: main.lua:38:bad argument#2 to 'rectangle'(number ...
3
votes
0answers
49 views

An error with io.read() in lua

When I use io.read() I get input from the user but when I do so it wont count backspaces, so if I type: blah blah blaht when my program wants input then if I delete the t: blah blah blah It ...
1
vote
1answer
52 views

call values that have a common key in Lua

1Is there a way to write a function to multiply two values based on only the fact that they have the same key? Here is some psudocode for what I have in mind: operation = {a=12, b=7, c=31} operator1 ...
1
vote
0answers
56 views

Create a Lua table from a CPP string

I'm coding and artificial intelligence using Lua script. And I'd like to push my map in the Lua's stack which is stock in a std::string *. I show you : My Lua script (just a sketch to display the ...
0
votes
1answer
29 views

Getting variable from a function

function isEven(x) print("Checking if "..x.." is even.\nWill return state as 1 if true.") if math.fmod(x, 2) == 0 then state = 1 end return state end I know that I can just ...
-2
votes
0answers
69 views

Value Overhead on PL Implementation [closed]

I read that PHP has a 68-byte overhead for every value: http://blog.paulbiggar.com/archive/a-rant-about-php-compilers-in-general-and-hiphop-in-particular/ How much is it for CRuby/JRuby? CPython? ...
2
votes
1answer
38 views

What's the difference behind normal function call and pcall

I am using lua and I know pcall is for protected calling and my question is if both ways of calling all come down to the same C code. e.g. function a(arg) ... end normal calling: a(arg) ...
0
votes
1answer
48 views

How to build C program that emedded Lua

I'm learning how to embed Lua into C, and start with a simple example: demo.c #include <stdio.h> #include <string.h> #include <lua.h> #include <lauxlib.h> #include ...
3
votes
1answer
43 views

How Do I Build Lua For Windows Using MinGW and MSYS?

I have a book called Beginning Lua Programming which is suppose to go over the raw basics but it is sort of leaving me stranded. Here is an effort to condense 3 pages: QUOTE: The following ...
0
votes
1answer
37 views

Corona SDK data storage on simulator

new to Corona SDK, and i'm trying to figure out a way to load and save a file (which stores game data) on the simulator. (i dont want to have to debug on real device and take 15 seconds just to see a ...
-1
votes
1answer
24 views

lua: TextRPG.lua:15: attempt to call global 'command' (a nil value)

I know this one has been asked but I cant find anything that helps, heres my code: print("Welcome to Text RPG \n"); function commmand() print("What do you want to do? \(\"help\" for help\) \n NOTE: ...
1
vote
1answer
38 views

Redis Capped Sorted Set, List, or Queue?

Has anyone implemented a capped data-structure of any kind in Redis? I'm working on building something like a news feed. The feed will wind up being manipulated and read from very frequently, and ...
-1
votes
4answers
40 views

Lua - parse from text file and store values with different length

I am a beginner in programming with Lua, and I am stuck with reading a text file and trying to store this in an array. I know there already exists a topic like this, but I was wondering how I should ...
-3
votes
0answers
15 views

is it possible to schedule notification [closed]

I am trying to schedule a notification based off the user selected date and time. Basically I want it to send an alert based off date and time the user chooses on a previous screen. is that possible? ...
1
vote
1answer
29 views

Replace a substring in Lua with a pattern

I have a string like this str = '["username"] = "user"; ["deepscan"] = "true"; ["token"] = true; ["password"] = "krghfkghkfghf"; ["uploadMethod"] = "JSON"; ...
0
votes
2answers
57 views

lua: check subject of a method

obj = {} function obj:setName(name) print("obj: ", self) print("name: ", obj) end I create an object and assign a method like above. Now I call it this way: obj:setName("blabla") The ...
-1
votes
1answer
28 views

How to implement lua_lock/lua_unlock in luajit?

I am reading this lua thread tutorial and my lua code may be accessed by other threads at anytime and all I wan to do is to protect the luaState from corrupting. I just searched luajit's source but ...
0
votes
0answers
37 views

Lua registry: it is shared by threads?

Lua provides a "registry" "that can be used by any C code to store whatever Lua values it needs to store". And threads "shares with the original thread its global environment", as said here. But I can ...
0
votes
0answers
25 views

Awesome WM: Move window from one screen to another [closed]

How can I program the rc.lua file to enable a keyboard shortcut to move a window from one tag on one screen to a tag that is on a different screen? I know the modkey + shift + [tag number] shortcut, ...
1
vote
3answers
71 views

How to convert windows-1256 to utf-8 in lua?

I need to convert Arabic text from windows-1256 to utf-8 how can I do that? any help? thanks
-2
votes
0answers
15 views

How does Camera and Camera fitter work in MOAI SDK? [closed]

Hello I am pretty new with game programming and all . right now i am working with MOAI SDK . And I want to make a Platformer game with parallex scrolling and all . but I dont know how to handle Camera ...
1
vote
2answers
43 views

if statement not working in Lua for io.read

I'm trying to make a 'simple' Y/N answer choice thing. (That you saw all the time on old programs) But an If Statement I'm using doesn't seem to want to work. I even print out the variable and it is ...

1 2 3 4 5 77