Page 1 of 3

ISVirgin - Please be Gentle :)

Posted: Sun Dec 17, 2006 12:21 am
by GeoffreyF67
I've purchased, downloaded, installed, and have InnerSpace running in Everquest...

But I don't see the usual features that I do with macroquest.

Now, as I understand it, I need to get an extension for IS. But I can't find the download for this extension.

Any help would be greatly appreciated.

Thanks,

G-Man

Posted: Sun Dec 17, 2006 1:57 am
by GeoffreyF67
I finally figured it out...wow that documentation really needs to be updated Lax!

Anyhow, if someone needs to know, you have to get the isxdk from here:

http://www.lavishsoft.com/downloads.php?p=isxdk

Then you have to install it. Then you update your include (and lib) paths.

Finally, you have to compile the ISXEQ that's in the MQ2 distribution...

Incidentally, the map seems faster to update now with ISXEQ - dunno why or if I'm dreaming but it does seem faster to me.

G-Man

Posted: Sun Dec 17, 2006 1:41 pm
by mekaniak
Echoism precompiles isxeq and some plugins for IS here.

http://ismods.com/forums/viewtopic.php?t=1913

Posted: Sun Dec 17, 2006 3:21 pm
by Lax
I finally figured it out...wow that documentation really needs to be updated Lax!
Which documentation are you referring to? I dont recall making a howto on using ISXEQ

Posted: Fri Dec 29, 2006 8:30 pm
by GeoffreyF67
The Innerspace docs are really hard to follow because there's not much documented. Took me quite a while to figure out how to get the extensions loaded then I forgot and when I came back a week later had to figure it out again LOL.

G-Man

Posted: Fri Dec 29, 2006 8:34 pm
by GeoffreyF67
For instance, right now I"m attempting to find information on whether it's possible to use a .mac within innerspace. I *think* i've seen it posted somehwere before but I'll be durned if I can find it and how exactly to do it.

What I'm trying to do at the moment is run modbot.mac :)

G-Man

Posted: Sat Dec 30, 2006 3:28 pm
by mekaniak
ISXEQLegacy is what you need to run macs, but I'm not 100% whether or not it gets updated anymore. You should join IRC, very knowlegeable people there.

Posted: Sun Dec 31, 2006 2:43 am
by Kroak
From what I remember last, ISXEQLegacy will not run the plugins that most of the major botting macros require. ModBot would be hell to convert, and Autobot is way too large.
I made a small attempt at converting one of the 2 to lavishscript, but the runtime errors (the ones that allow the macro to keep running) did not give line numbers at the time, even if they create bigger problems further on down in the script. Not sure if that's changed, but it made IS hard to write scripts for, and hard to debug.

Posted: Sun Dec 31, 2006 2:02 pm
by Lax
The Innerspace docs are really hard to follow because there's not much documented. Took me quite a while to figure out how to get the extensions loaded then I forgot and when I came back a week later had to figure it out again LOL.
There's actually a SHITLOAD documented, and I dont have near enough time to continue documenting. If you just wanted to know how to load an extension you could have asked anyone
ISXEQLegacy is what you need to run macs, but I'm not 100% whether or not it gets updated anymore. You should join IRC, very knowlegeable people there.
It shouldnt need any updating, it's swiss cheesed directly into MQ2's code. It needed an update at one point because the ISXDK (inner space extension development kit) was updated in such a way that it broke ISXEQLegacy. that's since been fixed.
From what I remember last, ISXEQLegacy will not run the plugins that most of the major botting macros require. ModBot would be hell to convert, and Autobot is way too large.
It's not worth running MQ2 macros. First off theyre trash anyway (no offense whatsoever to the macro developers, its generally NOT your fault, you do the best you can given the circumstances). There's a long list of optimizations that are in LavishScript that will never be available in MQ2.

Just for a simple example... In MQ2, cramming as much shit as possible into one line is beneficial because of the relatively low default "turbo", so you end up with 1-line "if" commands (which is another performance hit, as "if" should not be a command) that have like 500 individual data sequences in them. It is inefficient to break that down into 500 "if" commands in MQ2. Additionally, every last data sequence in the line is processed, regardless of whether any given sequence means that the entire /if ONLY has one possible outcome at that point. for example: 1 || (0 && 0 && 0 &&0).... this if can stop at 1 || because the 0 && 0 is all chained together, and it's saying "if this is non-zero, or that is non-zero" .. well, it can stop at the 1 (this is called short circuiting, and is an optimization in most implementations of most languages that have similar constructs). But with MQ2, the calculator will simply go through and calculate every last detail, and every last data sequence is calculated.

With LavishScript, "if" is part of script structure, not a command. Script structure is evaluated when the script ("macro" in mq2 speak) is loaded, rather than discovered each time a given command is executed (another flaw in MQ2 that has had a little bit of patching up). if statements are automatically split into many if statements, so there's absolutely no performance penalty for splitting your if statements into multiple if statements yourself to make the code readable. short circuiting is also thusly implemented.
I made a small attempt at converting one of the 2 to lavishscript, but the runtime errors (the ones that allow the macro to keep running) did not give line numbers at the time, even if they create bigger problems further on down in the script. Not sure if that's changed, but it made IS hard to write scripts for, and hard to debug.
The problem you probably had is the failure to compile a math sequence. The reason this doesnt give line numbers is kind of technical but it has to do with the part of the code that compiles math having no knowledge of scripts and line numbers. By design, it's actually supposed to work fine if it couldn't compile the math. This is rarely a problem, if you ran into it so much that it prevented you from coding in LavishScript, then you were doing something seriously wrong from the get go. Most people never run into it at all...

Anyway all of this is technically irrelevant as I actually suggest writing IS scripts in .net rather than in LavishScript. LavishScript is intended to be a command shell (and has always been, though it went through some fun upgrades for scripting). Standard .NET apps (written in C#, VB, etc) can run in process with Inner Space, and they can take advantage of API from IS and its components, as well as ISXEQ (note: you can wrap the LavishScript objects with C# classes deriving from LavishScriptObject, and dllimport any exported API. it's easy to distribute a .NET library for ISXEQ for people to use so they dont have to figure out wrapping the objects themselves, etc). And that's way better than using the MQ2 or LavishScript engines any day.

Posted: Sun Dec 31, 2006 2:19 pm
by mekaniak
it's easy to distribute a .NET library for ISXEQ for people to use so they dont have to figure out wrapping the objects themselves, etc).
So could you? :D

Posted: Sun Dec 31, 2006 6:02 pm
by Lax
No, I simply don't have the time to do every last piece of code required for every last project. Particularly when it's something that's simple enough that anyone with knowledge of, say, C# and experience with MQ2 macros (or better yet, LavishScript) could do it. It's just time consuming, and I am no longer at a point in my life where I can sit down and do all the easy time consuming things that I'd like to do. Too many people want my time for me to do that.

Sorry. Like I said, it's someone a lot of people have the necessary skills to do.

Posted: Mon Jan 01, 2007 2:21 pm
by mekaniak
Its ok, you're still the best. :D

Re: ISVirgin - Please be Gentle :)

Posted: Tue Aug 05, 2025 5:24 pm
by xyilla

Re: ISVirgin - Please be Gentle :)

Posted: Tue Aug 05, 2025 5:25 pm
by xyilla

Re: ISVirgin - Please be Gentle :)

Posted: Tue Aug 05, 2025 5:26 pm
by xyilla