Pages: 1 2 3 :: [one page] |
Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Philderbeast
M.I.M.M.S The Watchmen.
5
|
Posted - 2011.12.22 12:05:00 -
[1] - Quote
is there a working mod for displaying eve fittings in an easy to read way? for instance similar to the in game fitting screen? |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.04 00:29:00 -
[2] - Quote
ok since it appears no one is activly developing this i have taken the old version posted in a previous thread and have begun work to update this to Crucible and remove some of the horrid code i found in there.
Current progress:
Updated code to hook in to the existing bbcode structure of phpbb (before it was only working after you posted so you could not preview your post and see the fitting window)
I'm currently working on fixing the layout code to make it look a bit nicer, and will then update the database to crucible with all mods and ships currently available.
I hope to have a public beta out by next week for you to start to test this.
Watch this thread for updates,
|

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.04 08:37:00 -
[3] - Quote
ill make another post to help get me some info here.
I'm now moving over to using the static data dump to get the info i need about the modules to place them on the fitting.
For anything in a high, med, lo or rig slot this is easy and i have a query that is doing this, however I'm getting stuck with drones, charges and sub systems.
I would prefer not to have to create custom tables for this info (although it might be the best way) so i was wondering if there is any way to get this info, I may end up creating some custom tables but i would still like to know how to get this directly from the data dump so i can make a script to make the tables rather then getting the info by hand when something is added or removed. |

Nathan WAKE
Osiris Entreprises OSE Fondation
7
|
Posted - 2012.01.04 09:57:00 -
[4] - Quote
Hello Phil,
I did like you did, I picked up the old mod and arranged it a little. The mod was finished, and instead of releasing it, I passed it on to Cyerus, who is developping a API regsitration PHPBB mod for him to include it into his release (yet to come, version 5.2).
Cyerus told me the same thing that you wrote in your post : the BB code part of the mod was horrible (but not mine) and he rewrotte it from scratch for consistency and compatibility. He also changed the code so that, when viewed in game, you can get the info directly by clicking on an item. And last of all, he linked all the images from the EvE servers, as I chose to provide them with the package. I don't think he intends to release the mod as a "stand alone", so you're very welcome if you succeed in your project.
For the code part of it, you are probably much better than I am, so if won't comment 
Regarding the tables needed for the mod to work, I ended up creating a new table for the ships with all I needed in it, because the SQL query to get all this from the different table in the dump was much too complicated.
Here's my table :
typeID -> for reference typeName -> for display low -> number of low slots medium -> number of medium slots high -> number of high slots drone -> volume in m3 of the drone bay (0 if none) rig -> number of rig slots subsystems -> number of subsystems slots (0 if none) raceID raceName metaGroupName -> Tech I, Tech II, Tech III or Faction groupName marketGroupName -> for displaying Caldari, Caldari Navy, Amarr and so on
For T3 cruisers, all low, med and high slots were defaulted to 8 because the real number of slots depends on the subsystems you choose, and it was too difficult (for me) to code that.
I had a bug in the code : when a item, low med or high slot was added to the fitt, the mod displayed correctly the number of remaining slots. But when no item were added to the fitt, the mod did not display the remaining slots available. For example, fitt no high modules on a Condor, and the system fails to tell you you have 3 remaining slots, but fitt a small missile launcher, and the 2 remaining slots were correctly displayed. I never could find were the faulty code was, but again, I'm just a amateur, not a developer, and the initial code was not mine.
Hope you'll succeed in you project, and looking forward to download and install it in replacement of mine ;-)
Cheers
Nathan "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.04 10:05:00 -
[5] - Quote
thanks for the info nathan,
it looks like ill be making my own tables then.
My intention at this stage is to split it in to 2 tables. one for the ships, and one for modules/drones.
my tables wold be
for ships typeid ship name high slots med slots low slots reg slots subsystem slots
and for mods/drones/charges and type id mod name mod location
there is no need to store the tech level as i pull the images from the eve image server and it gives this. but i still need to get all this info from the data dump to build the second table.
i do plan some igb integration but that's a lot later on down the track.
also at this stage i don't think any of the original code is renaming in my mod, with the exception of the css code ;) |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.05 01:57:00 -
[6] - Quote
UPDATE
COMPLETED
- all code is done with the exception of showing the charges.
- Database has been updated to crucible, and i have a script to generate new tables for future updates.
TODO
- create the Charge table and display this info on the fitting
- Create modx file and package for initial release
ETA 2 days!*
please not this is a estimate and depending on how long it takes to build the charge table release could be much sooner or much longer.
|

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 08:06:00 -
[7] - Quote
First to comment 
Installed it and noted a small error in the code :
includes/message_parser.php
there is a coma missing at the end of this line :
Quote:'EFTFit'=> array('bbcode_id' => 13,'regexp' => array('#\[EFTFit\](.*?)\[/EFTFit\]#uise' => "\$this->bbcode_eftfitting('\$1')"))
which result in the following error :
Quote:Parse error: parse error, expecting `')'' in C:\wamp\www\EFT_PHIL\includes\message_parser.php on line 119
Nothing too serious 
Still trying to get the EFTFit button to diplay, next comment soon  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.05 08:15:00 -
[8] - Quote
*hides in the corner*
thanks for that pickup, i did a little reshuffle in my files so there was no need for it however i have made that change to the install file and the new package has been uploaded
currently i haven't put in a button for it, i was to brain dead however its only a few lines of code ill put them in shortly for you and post them here. |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 08:23:00 -
[9] - Quote
Updated my post with some more feedback  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.05 08:32:00 -
[10] - Quote
thanks for the feedback, ill get the missing images in,
I agree I'm not s huge fan of the layout wither but it does the job and i was more worred about getting it working then changing the way it looks. |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.05 08:44:00 -
[11] - Quote
ok new version uploaded with all missing images (that wasent the only one :S) and a button for using the bbcode :) |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 09:22:00 -
[12] - Quote
Archive is announced as corrupted for me  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.05 09:27:00 -
[13] - Quote
weird its working for me... but i have re uploaded it jsut in case for you. |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 10:49:00 -
[14] - Quote
Still no luck with your archive.... maybe rename it ? Let's wait and see if others have the same problem.
Anyway, I sent you by private mail a link to a download package. You do not have to use it if you do not want to, espacialy if you find me too "intrusive" in your work but consider it as a "gift" 
As I did work on that mod, I had already prepared a new background panel and the .css file that goes with it, so I modified your .css file to suit my needs and installed it on my board. The image is slightly larger and the icons placement is a little different as well. Your .css file has been modified to reflect this.
I send it by private mail because this is your work in the first place and it's yours to decide whether you want to change your package or not 
In the package, you'll find :
- various background images - to use them you have to
- rename the one you want to "fitting2.png" (according to your code)
- replace your .css file by the one I sent you - I only changed x and y positions for the icons and the fitting window size.
- a modified .css file - a source .psd file for the background image (play with low oppacity, high oppacity and background color masks to easily change the design)
My background image looks like this :
Fitting Panel
Once again, that is great work.
Thank you for picking-up this mod development, I sadly have to admit to myself that this was far too complicated for me 
Cheers
Nathan "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.05 12:46:00 -
[15] - Quote
very nice! i think i will use it but i haven't received the mail, can you send it by eve mail for me? |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 13:55:00 -
[16] - Quote
Resent  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.06 01:01:00 -
[17] - Quote
thanks got it this time, ill properly work it in to the next release (along with IGB integration)
also i have uploaded a new installer package as i found some issues with the last one, again :P
The current version has also been submitted for validation by the phpbb team again so hopefully i will get the all clear from them soon, if not ill be fixing anything they find before making anymore changes to the mod. |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.06 08:32:00 -
[18] - Quote
Found a link provided by Steve Ronuken in one of my previous post regarding the IGb and fittings :
http://wiki.eveonline.com/en/wiki/Ship_DNA
If this can help... "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Nathan WAKE
Osiris Entreprises OSE Fondation
9
|
Posted - 2012.01.08 10:57:00 -
[19] - Quote
Friendly bump to the top, because I want that mod 
But I'm still having problems with the archive. Anyone else having the same issue unpacking it ? "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.08 11:55:00 -
[20] - Quote
weird
i have uploaded another version, this one using 7zip
http://www.philderbeast.com/downloads/EFT_Fitting_mod_package.7z
let me know how that goes |

Nathan WAKE
Osiris Entreprises OSE Fondation
9
|
Posted - 2012.01.08 12:29:00 -
[21] - Quote
Works great, thank you.
I'll install it on a fresh board and let you know how it works.
Let's say an hour from now. "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Khi3l
Babylon Knights Ares Protectiva
1
|
Posted - 2012.01.15 08:41:00 -
[22] - Quote
Hi,
Any chance you can adapt this for SMF ? |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.16 02:40:00 -
[23] - Quote
having never worked with SMF and there bbcode system, as well as no vested interest in keeping it running i honestly would not know, however the basic code to parse the text should be able to be moved over easily to SMF, or any other BB system you care to name
I wont be porting it over at this stage, unless there is a large demand for it and noone else is willing to do it, however im quite happy for you to take the code from this mod and apply it to SMF etc, and i will provide the database script for you as well to generate the database for future releases as well if you want. |

Balani
ELVE Industries Shadow of xXDEATHXx
2
|
Posted - 2012.01.17 13:10:00 -
[24] - Quote
i got an "Archiv destroyed" while decompress can someone confirm it? |

Nathan WAKE
Osiris Entreprises OSE Fondation
9
|
Posted - 2012.01.17 15:45:00 -
[25] - Quote
Balani wrote:i got an "Archiv destroyed" while decompress can someone confirm it?
Yes, same thing here with the link of the firts post. But try the link on the lats post of the first page, it worked for me  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.18 09:00:00 -
[26] - Quote
i have added the second link to the first post now to make it easer to find ;) |

graves warship
United Kings Rolling Thunder.
0
|
Posted - 2012.01.19 03:53:00 -
[27] - Quote
done everything you said in the xml file the result is as follows :
http://imageshack.us/f/713/needswork.jpg/
little assistance ? |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.19 06:47:00 -
[28] - Quote
looks like you don't have the css file in place eve mail me the website url where i can see your forums and ill check if you would like. |

Khi3l
Babylon Knights Ares Protectiva
1
|
Posted - 2012.01.19 13:37:00 -
[29] - Quote
Philderbeast wrote:having never worked with SMF and there bbcode system, as well as no vested interest in keeping it running i honestly would not know, however the basic code to parse the text should be able to be moved over easily to SMF, or any other BB system you care to name
I wont be porting it over at this stage, unless there is a large demand for it and noone else is willing to do it, however im quite happy for you to take the code from this mod and apply it to SMF etc, and i will provide the database script for you as well to generate the database for future releases as well if you want.
Looking at your code and attempting to port this to SMF.
All smf bbcodes are in /Sources/Subs.php.
Looking in this file to see how i can integrate your stuff but it can take me quite a long time as i'm not really good at smf programming.
So, if anyone is interested on this, please feel free to do it, i'm sure many peoples want this on their board as SMF often used for corporation/alliance board.
Sorry for my english :) |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.20 05:01:00 -
[30] - Quote
ahhh it looks like im possably missing an install setp, go in to your admin contol panel > styles > themes
find your theme (or all of them) and click refresh, this should start the mod working properly for you. |

graves warship
United Kings Rolling Thunder.
0
|
Posted - 2012.01.20 08:22:00 -
[31] - Quote
that does not work either am probably missing something phpbb3 version 3.0.9
looks to me it does not read the css file correctly |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.20 10:40:00 -
[32] - Quote
your not using the BG image I supplied so the CSS file etc that your using dose not match up, please use the background I supplied only untill i have made the modifications for the newer version.
other then that its working as intended at this stage. |

Enik Gonz
Worms Coalition Spectrum Alliance
4
|
Posted - 2012.01.21 11:15:00 -
[33] - Quote
I had to copy the content from your fitting.css into my stylesheet.css i couldn't get the import function to work with my current theme. the line should be i added @import url("fitting.css"); in my stylesheet.css but it doesn't work. AFAICS the formatting should be correct according to the standarts, and the fitting.css file is in the same folder. It just doesn't work so i copied everything into my stylesheet.css |

Balani
ELVE Industries Shadow of xXDEATHXx
2
|
Posted - 2012.01.21 12:47:00 -
[34] - Quote
i have an problem with Board3 Portal an this mod. I get an debug warning on the Portal Site.
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 665: Invalid argument supplied for foreach()
foreach($fitting_array as $itemname){
in Forum itself it runs fine |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.21 23:14:00 -
[35] - Quote
thats very odd that the import is not working for you, since thats how all the rest of the styles are imported in to the main sheet.
as for board3 portal, i can not support every other mod out there so I'm sorry but your on your own for that one. |

Zae'dra Xanthe
Scythians Bloodbound.
3
|
Posted - 2012.01.22 09:30:00 -
[36] - Quote
Simply edit your theme's template/overall_header.html, remove the part where you "include" your fitting.js file in a "script" tag and just add the contents of "fitting.js" inside a regular script tag. |

Kira Doshu
GOLD LIONS
0
|
Posted - 2012.01.23 02:39:00 -
[37] - Quote
Just a positive chime about how great this mod is! Instructions were spot on, and it works very well with a non-standard custom style. While mentioned previously it's super important to clear the template cache, that should definitely be stressed more. Silly PHPBB always finds a way to get you to scratch your head at times, and that got me today (yet again).
Solid effort, renders well, and the Ammo additions on the inside circle were a great surprise. Well done! |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.02.08 08:19:00 -
[38] - Quote
Sorry for not keeping this updated,
I got my results back from the phpbb mod team, and unfortunately it did not make the muster so expect an updated version in the next week or so to address the majority/all of the issues they brought up and get it validated. |

Psycho symbiosis
Blue Sun. Ares Protectiva
0
|
Posted - 2012.02.19 14:31:00 -
[39] - Quote
Hi, and thanks for this mod.
i've got this error when post (or preview) a thread with EFTfit tag :
Fatal error: Call to undefined method parse_message::bbcode_second_pass_eftfitting() in /home/bluesun/public_html/ally/forum/includes/bbcode.php(112) : regexp code on line 1
i'm on a 3.0.10 PhpBB version, with twilightBB Style (tryed with Prosilver too).
Any idea ? |

Kimazart Kaviera
DerpWaffe
1
|
Posted - 2012.03.01 05:44:00 -
[40] - Quote
I think I may have done something wrong...
Im not recieving any errors, everything was edited fine.
But when I go to create a fit, I have no idea where to begin O.o
you can see here http://derpwaffe.com/index.php
I installed it over the original temp to see if I could get it working, everything seems fine.
Any help would be appreciated.
Thanks |

Peter Kidds
Brutor Tribe Minmatar Republic
2
|
Posted - 2012.03.08 21:19:00 -
[41] - Quote
After some long fiddling, I have successfully ported this to SMF.
Demo can be seen here: http://sixty8.org/nights-watch/index.php?topic=2.msg
I will attempt to package it up into a mod so that it is easy to install. Want to complete some final testing to ensure that it is working as intended.
All credit goes to Philderbeast - I'm simply modified his code to work with SMF I may also create a new post - so that SMF users can find this easily. |

PyroTech03
Legion of Darkwind Order of the Void
2
|
Posted - 2012.03.10 23:42:00 -
[42] - Quote
Peter Kidds wrote:After some long fiddling, I have successfully ported this to SMF. Demo can be seen here: http://sixty8.org/nights-watch/index.php?topic=2.msgI will attempt to package it up into a mod so that it is easy to install. Want to complete some final testing to ensure that it is working as intended. All credit goes to Philderbeast - I'm simply modified his code to work with SMF I may also create a new post - so that SMF users can find this easily.
So do you have a download available for the SMF version already? Or are we still left in waiting ;)
Thank you for porting this over by the way. |

Peter Kidds
Brutor Tribe Minmatar Republic
2
|
Posted - 2012.03.11 20:33:00 -
[43] - Quote
Hey guys,
The mod for SMF can be found here: http://www.mediafire.com/?tqw9ttyo59ozpe8
It has only been tested on SMF 2ish, and I can't guarantee it will work for you (I've managed it correctly on two different forums).
If you have a custom theme, you will need to copy a few files manually - these are mentioned in the readme.
Also I take no responsibility for anything that goes wrong with your forums after using this mod, so use at your own discretion.
Please let me know if you have success with this.
-Peter |

PyroTech03
Legion of Darkwind Order of the Void
2
|
Posted - 2012.03.11 23:04:00 -
[44] - Quote
Alright....been trying it out.
So far, having an issue with posting one fit from an old post;
Quote:[Manticore, Hi/Lo PvP Manticore] Ballistic Control System II Nanofiber Internal Structure II
Catalyzed Cold-Gas I Arcjet Thrusters Warp Disruptor II F-90 Positional Sensor Subroutines Phased Weapon Navigation Array Generation Extron
Covert Ops Cloaking Device II 'Arbalest' Siege Missile Launcher,Caldari Navy Juggernaut Torpedo 'Arbalest' Siege Missile Launcher,Caldari Navy Juggernaut Torpedo 'Arbalest' Siege Missile Launcher,Caldari Navy Juggernaut Torpedo
Small Bay Loading Accelerator I Small Warhead Calefaction Catalyst I
It doesn't seem to like the Missle Launcher's. I can post the whole fit, and all of it will go through, until i drop in the 'Arbalest'. The appostraphe makes the thing think your trying to hack it (litterally, the error read's hacking attempt) |

Peter Kidds
Brutor Tribe Minmatar Republic
2
|
Posted - 2012.03.12 08:00:00 -
[45] - Quote
Yeah, I think I know what the issue is - I need to escape the apostrophe. Will take a look once I'm back from uni. |

Khi3l
Babylon Knights Controlled Chaos
1
|
Posted - 2012.03.12 15:10:00 -
[46] - Quote
Really nice work for porting this to SMF, keep up the good work ! |

Con'Rad
nemesis 2.0 Ares Protectiva
1
|
Posted - 2012.03.13 03:08:00 -
[47] - Quote
Very good work for this mod to smf
Just a bug with ' |

PyroTech03
Legion of Darkwind Order of the Void
2
|
Posted - 2012.03.13 06:26:00 -
[48] - Quote
The EFT BBCode also breaks TSM if your using that for controlling access to the killboard
Here's a link
And you planning on starting a seperate thread for this? I feel bad for hijacking the phpbb guy >.> |

Kimazart Kaviera
DerpWaffe
1
|
Posted - 2012.03.14 02:23:00 -
[49] - Quote
Is work still ongoing for the phpbb version of this? |

Philderbeast
M.I.M.M.S Apocalypse Now.
11
|
Posted - 2012.03.23 07:02:00 -
[50] - Quote
Sorry for the lack of reply's, i have not had an active sub due to moving, there will most likely be a new version coming soon (tm) to fix some of the bugs picked up by the phpbb team and help improve the compatability with other mods that some people are experancing. |

Philderbeast
M.I.M.M.S Apocalypse Now.
11
|
Posted - 2012.03.24 21:37:00 -
[51] - Quote
I'm in the process of creating an updated version of the database to support the new mod names, would people want both the old and new names in the database? or just the new ones? |

BeanBagKing
Terra Incognita Intrepid Crossing
139
|
Posted - 2012.04.01 17:51:00 -
[52] - Quote
Philderbeast wrote:I'm in the process of creating an updated version of the database to support the new mod names, would people want both the old and new names in the database? or just the new ones?
I would imagine only the new ones, the old ones are depreciated. I can see how it might cause issues for some people, but they aren't being used anymore and I think it would cause more problems for people trying to import fits with old names. |

GardenGroveVW
We Reach Around Situation: Normal
0
|
Posted - 2012.04.11 22:35:00 -
[53] - Quote
Just checkin in to see how the update is coming along..
Thank you !! |

Philderbeast
M.I.M.M.S Apocalypse Now.
12
|
Posted - 2012.04.12 22:29:00 -
[54] - Quote
new database is organized, will probably be a manual table replacement (as in delete them from the db and start again.)
code fixes are somewhat slower gue to RL getting in the way. |

Khi3l
Babylon Knights Test Friends Please Ignore
7
|
Posted - 2012.04.13 10:17:00 -
[55] - Quote
Will you support Peter Kidds's port of this mod to SMF too ? |

Philderbeast
M.I.M.M.S Apocalypse Now.
12
|
Posted - 2012.04.13 11:27:00 -
[56] - Quote
I will help out where possible but not knowing the SMF code base i wont be making updates to it myself. |

Philderbeast
M.I.M.M.S Apocalypse Now.
12
|
Posted - 2012.04.13 12:42:00 -
[57] - Quote
Crucible 1.6 update is out, still needs more work however it updates the item names and removes most of the issues given to me buy the phpbb team.
it is recommended to remove the original mod and replace with this copy, there is no upgrade files provided at this stage (some files have move and very few minor code changes.) |

Khi3l
Babylon Knights Test Friends Please Ignore
7
|
Posted - 2012.04.18 19:12:00 -
[58] - Quote
Thx for the update but i think there is a problem with your files in the first post.
I cannot extract the zip file and 7zip file hasn't been updated. |

Mikal Red
Lead Farmers Kill It With Fire
9
|
Posted - 2012.06.03 10:12:00 -
[59] - Quote
I used WinRAR to do a repair on the file and it's working OK after that.
There seems to be a missing comma on the BBCode line that get's added into message_parser.php by the way. If you have a default install it'll break somewhere around line 118 when you try to post etc. |

Khi3l
Babylon Knights Test Alliance Please Ignore
9
|
Posted - 2012.06.03 16:36:00 -
[60] - Quote
Any chance for Inferno release in 7zip format ? |

Khi3l
Babylon Knights Test Alliance Please Ignore
11
|
Posted - 2012.06.09 14:52:00 -
[61] - Quote
Khi3l wrote:Any chance for Inferno release in 7zip format ?
BUMP
I think only database has changed. I'm not familiar with CCP DB dump so i can't do the changes myself. |

Troy Aihaken
L0s Zetas The Skeleton Crew
0
|
Posted - 2012.07.03 20:36:00 -
[62] - Quote
Is the SMF and PHPBB ones still working if so please post the links below   |

Kugler
Section 0 GIP Alliance
1
|
Posted - 2012.07.12 18:43:00 -
[63] - Quote
Bump.
Any progress with Inferno database ? |

Usikava
Section 0 GIP Alliance
0
|
Posted - 2012.07.21 13:32:00 -
[64] - Quote
So here you go updated SQL commands for inferno (there is 6 txt files in rar archive with commands for modules(files 1-5) and ammo (6th file) tables, I recommend u to fully clear tables and run commands to remove old modules and add new\renamed ones instead, though you can just run new commands to have both variants but it will create alot of duplicate entries in your DB), let me know if I forgot something I'll add it and reupload. SQL Commands for Inferno DB(Deposite Files) |

Usikava
Section 0 GIP Alliance
1
|
Posted - 2012.07.21 18:09:00 -
[65] - Quote
Well we have found one mistake, not sure who've made as we haven't found Rapid Light Missile Launchers in the DB... INSERT INTO `EFTmodules` (`TypeID`, `TypeName`, `location`) VALUES (1877, 'Rapid Light Missile Launcher II', 'hiPower'), (1875, 'Rapid Light Missile Launcher I', 'hiPower'), (8007,'Experimental SV-2000 Rapid Light Missile Launcher', 'hiPower'), (13919, 'Domination Rapid Light Missile Launcher', 'hiPower'), (13920, 'Dread Guristas Rapid Light Missile Launcher', 'hiPower'), (16061, 'Caldari Navy Rapid Light Missile Launcher', 'hiPower'), (17484, 'Republic Fleet Rapid Light Missile Launcher', 'hiPower'), (20597, '''Pickaxe" Rapid Light Missile Launcher', 'hiPower'), (22566, 'True Sansha Rapid Light Missile Launcher', 'hiPower');
Though I still can't add: (8023, 'Upgraded "Malkuth" Rapid Light Missile Launcher', 'hiPower'), (8025, 'Limited "Limos" Rapid Light Missile Launcher', 'hiPower'), (8027, 'Prototype "Arbalest" Rapid Light Missile Launcher', 'hiPower'), But this seems to be my hands problems... So if anyone could make this work do so =) |

Khi3l
Babylon Knights Test Alliance Please Ignore
11
|
Posted - 2012.08.01 09:00:00 -
[66] - Quote
Anyone has an updated version of this mod and can post a zip file ?
Will be glad to port this on SMF but i can't extract the zip file on the first post and the 7z file hasn't been upgraded.
So Usikava, if you want, can you provide a new zip file (or 7z file) with the mod including your updates ? |

Usikava
Section 0 GIP Alliance
1
|
Posted - 2012.08.07 22:37:00 -
[67] - Quote
Khi3l wrote:Anyone has an updated version of this mod and can post a zip file ?
Will be glad to port this on SMF but i can't extract the zip file on the first post and the 7z file hasn't been upgraded.
So Usikava, if you want, can you provide a new zip file (or 7z file) with the mod including your updates ?
Deposit Files 7z file (eve-files just don't eat 7z =P) but still there is just 6 txt files in archive with updated SQL commands for DB there is no updates to mod itself |
|
|
Pages: 1 2 3 :: [one page] |