About 315,000 results
Open links in new tab
  1. What does operator ~= mean in Lua? - Stack Overflow

    Nov 18, 2020 · What does the ~= operator mean in Lua? For example, in the following code: if x ~= params then

  2. Lua operators, why isn't +=, -= and so on defined?

    Nov 20, 2013 · In Lua's case, the language is intended to be an embedded scripting language, so any changes that make the language more complex or potentially make the compiler/runtime …

  3. if statement - How to check if a value is equal or not equal to one …

    Because control structures in Lua only consider nil and false to be false, and anything else to be true, this will always enter the if statement, which is not what you want either. There is no way …

  4. if statement - if, else, else if and end Lua - Stack Overflow

    May 2, 2012 · Any idea why this is wrong in Lua? if Pieza == 1 then if Rotacion == 1 then Piezas = Cuadrado1 else if Rotacion == 2 then Piezas =

  5. installation - How to install Lua on windows - Stack Overflow

    Installing lua system wide. Add lua in the environment variables by adding the path from where it's installed. After doing this you can open PowerShell and enter lua53.exe to open lua. Additional …

  6. Lua - if statement with two conditions on the same variable?

    Jan 24, 2012 · To anyone with the same sort of doubts about lua's syntax, i'd recommend checking the documentation here and keeping it handy. It'll be useful while learning. It'll be …

  7. lua - How to make a kill command to kill a specific player? - Stack ...

    I don't know Lua so there might be syntax errors, but the overall idea is that you use string.sub method to divide your message into 2 parts: the command part and the info part. If the …

  8. Concatenation of strings in Lua - Stack Overflow

    The Lua idiom for this case is something like this: function listvalues(s) local t = { } for k,v in ipairs(s) do t[#t+1] = tostring(v) end return table.concat(t,"\n") end By collecting the strings to …

  9. Lua - Current time in milliseconds - Stack Overflow

    Apr 15, 2017 · #!/bin/lua ----- ---HighResTimer.lua by Cody Duncan ---Wraps the High Resolution Timer Functions in --- Timer.so ----- package.cpath = "./Timer.so" --assuming Timer.so is in the …

  10. Inline conditions in Lua (a == b ? "yes" : "no")? - Stack Overflow

    Apr 3, 2011 · Lua is deliberately lightweight so it does not have a ternary operator. There are a couple of ways to get past this including using the and-or idiom. But I think that is bad for …