.Net Examples

Hook

Active Member
Is this still the best place to start?

SVN Repository http://svn.isxgames.com/isxScripts/EVE (.NET)

I've been using lavish script/ISXEve for over a year and have used .NET in the past but am very rusty. I'm looking for a simple framework to get past the initial learning curve of getting a .NET program compiled and the framework running.

Is there something more up to date, before I dive in?

Thanks,

Hook
 

Clarrow

Member
All I had to do in order to get a .Net compiled and ready to use ISXEve is:

1. Create a new .Net project.
2. Copy InnerSpace and ISXEve .dlls into the project directory.
3. Add the dlls to the projects "References" folder.

Getting things going after that is a bit challenging. References to objects retrieved through the ISXEve extension are only good for the frame they are retrieved in. As such, I had to execute all of my ISXEve related code during the OnFrame event provided by InnerSpace, and re-retrieve any entity, ship, etc. references I needed to use each frame.

http://www.lavishsoft.com/wiki/index.php/NET:Concepts:Frame_Locking#OnFrame_LavishScript_event
 

Hook

Active Member
Thanks for the reply.

I've got the example contained in the svn compiled and running.

Waiting for patch day and thought I'd investigate what it would take to convert my mining bots over to C#. I'm running 6 accounts on my poor PC and the CPU is pretty much maxed. I believe i've optimized my stuff as much as I can at this point. I thought maybe re-coding in C# might be more efficient.

Hook
 

A_L_F

Member
this link SVN Repository http://svn.isxgames.com/isxScripts/EVE (.NET)
is not function. Please could you provide me this help somewhere else?

Where I should add the dll to the project? I cant find it.
In the reference I have this problem ... please make sure that the file is accesible,and that it is valid assembly or COM component
 
Last edited:

A_L_F

Member
DONE, need import ISXEVEWrapper.dll in NET programs.

Please could anyone send me the link for some basic scipts? How to begin, im lost in. Its enough only to read some information (shield status, money,...) and give some orders (move item, ship,...)
 

Hook

Active Member
Yes i've been going through the questor code as well and have started morphing it to the way i like to do things. The old code is prior to the int64 changes for ID's but i've got that all updated.

One question, Is it possible to use the microsoft visual C# debugger after launching the assembly from the inner space console? Would sure be nice to be able to set breakpoints and observe the state of the code.

Hook
 
Top Bottom