About 1,300,000 results
Open links in new tab
  1. 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 …

  2. 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 …

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

    I want to make a command that would kill a player you specify. Let's say I type "kill/Paul". Now I want to kill the player with the name Paul. This is my command …

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

    I'm new to Lua, and need to know how to install it on Windows? I've tried and am unable to run the sample. When I try to compile it 100% success is shown, but when I click the run button it …

  5. lua - Roblox Admin Command Script - Stack Overflow

    Aug 6, 2013 · I'm currently trying to make a new admin command script; all I have so far is the kill command... everything I've tried (so far) works unless I use the ":* me" parameter ("*"being …

  6. resources - Lua, what is Lua? - Stack Overflow

    Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and …

  7. string - First character uppercase Lua - Stack Overflow

    Mar 11, 2010 · Does Lua provide a function to make the first character in a word uppercase (like ucfirst in php) and if so, how to use it? I want keywords[1] to be first letter uppercase.

  8. LUA get date time in format YYYYMMDDHHMMSS - Stack Overflow

    Nov 29, 2018 · I was wondering how to go around getting a date string in the following format: date = os.date() -- 11/29/18 09:14:04 Into the format of YYYYMMDDHHMMSS, so in this …

  9. lua - How to fix "attempt to index a nil value" - Stack Overflow

    Jul 25, 2019 · I'm trying to learn Lua through Minecraft (OpenComputers) and found myself stuck with a nil value problem. There could be things not actually from Lua (the mod itself) but the …

  10. Why does Lua have no "continue" statement? - Stack Overflow

    Aug 19, 2010 · The Lua authors felt that continue was only one of a number of possible new control flow mechanisms (the fact that it cannot work with the scope rules of repeat/until was a …