Page 2 of 3

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 5:50 am
by lucasfart
It can't do anything you can't do yourself. This is a tool mainly to make lua writing faster, easier, and lot less error-prone.

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 11:47 am
by 501st_commander
Slime615 wrote:I know this is alittle bump, but it is relevent. What can this editor do that you can't do in notepad?
Like lucasfart said.

This version was mainly a test. 1.0 RC1 will have so many new features it would make people who use notpad look like a noob.


Just a question, which one looks better?
0.5:
Hidden/Spoiler:
Image
1.0 RC1:
Hidden/Spoiler:
Image

(ignore the "Noob View" button untill next update)

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 12:51 pm
by Slime615
I like bits of both... Which is simpler I guess...

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 2:58 pm
by theultimat
I prefer the second one, it looks more professional IMO.

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 3:01 pm
by Darth_Spiderpig
theultimat wrote:I prefer the second one, it looks more professional IMO.
This. :thumbs:

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 9:06 pm
by 501st_commander
Thanks for the comments :)

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 10:42 pm
by kinetosimpetus
Darth_Spiderpig wrote:
theultimat wrote:I prefer the second one, it looks more professional IMO.
This. :thumbs:
*Agree*

Re: Lua Editor - v0.5 released

Posted: Wed Jun 30, 2010 11:09 pm
by 501st_commander
kinetosimpetus wrote:
Darth_Spiderpig wrote:
theultimat wrote:I prefer the second one, it looks more professional IMO.
This. :thumbs:
*Agree*
:D


oh, and this may make some of you happy, 1.0 i started from scratch. So, its compatable with 3.5 version of the .NET framework.

Re: Lua Editor - v0.5 released

Posted: Thu Jul 01, 2010 11:38 pm
by swado95
I've been fooling around and I made this.
Hidden/Spoiler:
If OnEnterRegion(9b)
Then
+reinforcements = 20

Conquest:AddCommandPost(cp_1)


End
Dose this look like it could work or am i out of my mind (this is first time ever)
Im trying to get it so when you step in region (9b) you take (cp_1), and have 20 reinforcements added.

Re: Lua Editor - v0.5 released

Posted: Fri Jul 02, 2010 12:01 am
by 501st_commander
i would say no.

Re: Lua Editor - v0.5 released

Posted: Fri Jul 02, 2010 8:42 am
by swado95
Would would i do to fix or make it work? And any tutorials on this subject.

Re: Lua Editor - v0.5 released

Posted: Fri Jul 02, 2010 11:10 am
by 501st_commander

Code: Select all


9b = OnEnterRegion(
      function()
            count = GetReinforcementCount(ATT)
            SetReinforcementCount(ATT, count + 20)
            thecp = CommandPost:New{name = "thename", hideCPs = false}
            thecp:AddCommandPost(Objective1CP)
      end,
      "9b"
)
*may* work

i think it about time to get back on topic..

Re: Lua Editor - v0.5 released

Posted: Fri Jul 02, 2010 10:10 pm
by lucasfart
501st_commander wrote:
kinetosimpetus wrote:
Darth_Spiderpig wrote:
theultimat wrote:I prefer the second one, it looks more professional IMO.
This. :thumbs:
*Agree*
:D


oh, and this may make some of you happy, 1.0 i started from scratch. So, its compatable with 3.5 version of the .NET framework.
Yay! I'll finally be able to use it :) . Thanks heaps for making the changes 501st. Can't you use bits and pieces of the script for the 3.5 version? That seems a bit crazy just for an update to totally change everything.

Re: Lua Editor - v0.5 released

Posted: Fri Jul 02, 2010 10:43 pm
by 501st_commander
lucasfart wrote:
501st_commander wrote:
kinetosimpetus wrote:
Darth_Spiderpig wrote:
theultimat wrote:I prefer the second one, it looks more professional IMO.
This. :thumbs:
*Agree*
:D


oh, and this may make some of you happy, 1.0 i started from scratch. So, its compatable with 3.5 version of the .NET framework.
Yay! I'll finally be able to use it :) . Thanks heaps for making the changes 501st. Can't you use bits and pieces of the script for the 3.5 version? That seems a bit crazy just for an update to totally change everything.
Frameworks are different. Each version is a hole new script. If you reference 4.0 in a program, thats all you can use. Same with 3.5.

Whats weird is full versions (x.0) are a hole new thing. Updates only come in... updates (ex. 4.x). So, like i said, if you use version 4.x then all you can use is 4.x. Unless you start over.

I hope that made sense..

Re: Lua Editor - v0.5 released

Posted: Sun Jul 04, 2010 5:40 am
by lucasfart
I get you, although its spelt "whole" not "hole". :wink:

Re: Lua Editor - v0.5 released

Posted: Sun Jul 04, 2010 6:33 pm
by swado95
Are you able to save because i cant for some reason.

Re: Lua Editor - v0.5 released

Posted: Mon Jul 05, 2010 9:29 am
by mswf
swado95 wrote:Are you able to save because i cant for some reason.
Do you have the correct version of .net framework?

Re: Lua Editor - v0.5 released

Posted: Mon Jul 05, 2010 10:07 am
by swado95
Ya i downloaded for link am i suppose to save in a special way?

Re: Lua Editor - v0.5 released

Posted: Mon Jul 05, 2010 10:30 am
by mswf
No, I meant install it correctly, so did you?

Re: Lua Editor - v0.5 released

Posted: Sat Jul 10, 2010 1:55 pm
by swado95
ya im pretty sure i did