Search results

  1. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    That sounded more like a farewell letter than I intended. I will be back in full swing in a few months, I have a long journey ahead of me. I would still love to hear requests, my inbox is always open. The only catch is if I do manage the time to poke at the script I will be sending you the...
  2. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    This is probably something I did wrong a while back. I have updated today with a fix for that. So I have been having some family issues and no longer have an active sub to EVE. I am still here and listening, but development has unfortunately stopped for now. I will still be listening for...
  3. tinyromeo

    Scripting help

    If you are subscribed to isxeve there is no reason to use the api. There is far more information provided by isxeve itself. However, if you must use the api I think your best bet is the File datatype I mentioned earlier. This is where you can find "everything" that isxeve can access...
  4. tinyromeo

    Scripting help

    http://www.lavishsoft.com/wiki/index.php/Main_Page From here it branches off into everything. While maybe not sorted very appealingly for a new user after enough digging you can find it all. Otherwise try some more "obvious" keywords in the search bar and that can often lead you where you need...
  5. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    I am close to updating again, there will be some big changes. Retreat button to do some running away and docking, The master (target caller if you like) is also able to be hot swapped while the script is running, I will put in what I have for mining it is minimal, but functioning well (handles...
  6. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    o.0 I received no messages...
  7. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    I will check into it, but off the top of my head I will have to go with no. I needed a unique identifier for each module, slot seemed logical, however if I can get something like an ID or whatever, but even using module type or module name will overlap and again "group" like the old yamfa did...
  8. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    I mean, I don't want to kick a dead horse or anything, but the old yamfa is history. Everything has been rewritten. After looking over your forum post it looks to me like everything you want is now just handled. Not sure is PVP had any support before (I may have filtered targets), but it is...
  9. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    Found a pm today I would like to share my response to. Pm or forum reply to get a hold of me, doesn't matter. So quick update today, the setting orbit in config now accepts 0 or 100-x (100 is EVE minimum I think, but 99 will be treated as 0 in the script) Setting Orbit to 0 will keep the...
  10. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    Look no further for behold the main post is updated with a new script and new instructions. I hope you all enjoy!!!
  11. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    Finished, and beautiful. Just had a busy work week, but tonight is friday night for me so within the next couple days I should have it posted. So I rewrote from the ground up, like I love to do all the time. There are some real big changes too! Lets see haven't used yamfa since like last year...
  12. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    Rewrite due soon... testing atm...
  13. tinyromeo

    Specific scripting questions

    1) Targeting is handled any way you want it. Look through the Entity datatype, any of the properties there can be searched for through the Entity top level object. For example, open up the wreckingball2 folder, in the debug folder there is a file named EntityListingA.XML. I spent a great deal of...
  14. tinyromeo

    There, its a scripting tutorial. Use It.

    Finished 7/31/13 variable(script) objMyObject MyObject function main() { call MyObject.Update MyObject:Update echo ${MyObject.Update} } objectdef MyObject { variable string UpdateMessage = "Message from the object" function Update() { echo ${This.UpdateMessage} function...
  15. tinyromeo

    There, its a scripting tutorial. Use It.

    Intro - First you will need a text editor, notepad++ is what I use and recommend. Next you will need a game, Eve Online is what I use and recommend, however, I will be teaching towards usefulness for all games. Then you will need Innerspace, it is what I use and recommend. Optionally you...
  16. tinyromeo

    Getting Entity ID of Corporate Hanger Array

    function main() { variable index:entity Entities variable iterator Iter EVE:QueryEntities[Entities] Entities:GetIterator[Iter] if ${Iter:First(exists)} do { echo "${Iter.Value.Name} - ${Iter.Value.ID}" } while ${Iter:Next(exists)} }
  17. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    I still haven't toyed around with remote uplink to much, I thought that was all configuration stuff with innerspace/isboxer. What I can tell you is how to run a command on startup though. Right click innerspace in the taskbar and select configuration. On the IS config screen choose the tab...
  18. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    You need to set the module's activation to the fleet tag you want it to activate on. Remember how I had you set one to MasterWeapon, set the ones you want to the fleet tag you want. A-J X-Z 1-9, do not use 0 (the number Zero). These settings are what determines when and where the module is...
  19. tinyromeo

    YAMFA - Yet Another Multibox Fleet Assitant

    Off the top of my head targeting order should be sequential by entity id I might be able to change the order a little, but in the end it will always mostly be in that order because of the way the collection is sorted. I can add an attack button and that is a genius idea, banging my head for...
Top Bottom