Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for LuaMan

I am working on a folder maze generator, where you press [Generate] and in the folder that the application is in, 2 folders are created, named 1, and 2. In each of those folders is up to 4 folders. This is supposed to continue until there is a max of …

Member Avatar for brady1239
0
546
Member Avatar for LuaMan

My project is at [url]https://sourceforge.net/projects/luamacroez/[/url]. It is a program which creates macro scripts, and can execute them within the program. I want to take it to the next level and take the .mlua files it saves, and turn them into an executable file, complete with it's own internal interpereter. I …

0
83
Member Avatar for LuaMan

*sigh* I'm back again. Same program. Different problem. [CODE]private void executeToolStripMenuItem_Click(object sender, EventArgs e) { string aaa = String.Format(richTextBoxEditor.ToString()); /*<-- Guessing that this is redundant */ lua.DoString(aaa); //<-- problem code }[/CODE] When I attempt to execute the Lua code in the textbox, it crashes the program. Wat do?

Member Avatar for LuaMan
0
216
Member Avatar for LuaMan

I am trying to make a macro engine for a personal project, and it would work fine, except that the form won't show when I debug it. Take it for granted that I am using the LuaInterface DLL please. Code: [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; …

Member Avatar for LuaMan
0
341