Gatherer v0.1 [Roster 1.7.3 addon]

Share Gatherer and Cartographer data via your Roster

Moderator: Foxy

Gatherer v0.1 [Roster 1.7.3 addon]

Postby Foxy » Mon Mar 12, 2007 3:23 am

Gatherer Offline Node Check System

:thumright: This is still BETA but you can start testing it! :thumleft:

TODO:
Check for duplicates on upload
Filter results on map
Make downloadable Gatherer.lua
Test uploading other "Gatherer" like .lua files

Please feel free to post any errors, modified files or any contributions you would like to include in the next build.

(posted the download on my site do to upload issues here)
Last edited by Foxy on Sun Apr 01, 2007 1:39 am, edited 4 times in total.
Foxy
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 111
Joined: Tue Aug 22, 2006 9:49 am

Gatherer v0.1 [Roster 1.7.3 addon]

Postby Foxy » Mon Mar 12, 2007 3:35 am

Foxy
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 111
Joined: Tue Aug 22, 2006 9:49 am

Gatherer v0.1 [Roster 1.7.3 addon]

Postby m80falcon » Thu Mar 15, 2007 1:43 pm

Seems to be a nice one.

Will there be the possiblity to download a file to import in your own game ? For example with the choice if i want to have herbs for example ?
m80falcon
WR.net Apprentice
WR.net Apprentice
 
Posts: 17
Joined: Fri Jul 07, 2006 8:23 pm

Gatherer v0.1 [Roster 1.7.3 addon]

Postby Foxy » Thu Mar 15, 2007 7:14 pm

That's the next item on my todo list :-)
Foxy
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 111
Joined: Tue Aug 22, 2006 9:49 am

Gatherer v0.1 [Roster 1.7.3 addon]

Postby m80falcon » Thu Mar 15, 2007 7:30 pm

When can I expect a release :) ?
m80falcon
WR.net Apprentice
WR.net Apprentice
 
Posts: 17
Joined: Fri Jul 07, 2006 8:23 pm

Gatherer v0.1 [Roster 1.7.3 addon]

Postby Foxy » Sat Mar 24, 2007 9:01 am

Well here is a start to it... Call it beta phase :-D
Foxy
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 111
Joined: Tue Aug 22, 2006 9:49 am

Gatherer v0.1 [Roster 1.7.3 addon]

Postby Foxy » Sat Mar 24, 2007 1:31 pm

Download is now posted... Try it out!
Foxy
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 111
Joined: Tue Aug 22, 2006 9:49 am

Re: Gatherer v0.1 [Roster 1.7.3 addon]

Postby Borsti » Sat Mar 24, 2007 4:58 pm

Foxy wrote:
:thumright: This is still BETA but you can start testing it! :thumleft:



I had installed this great addon but my Button is 1px high
http://magicroster.de.ki/
you find it under siggen cofig^^
and how can I upload the Gatherer.lua? there is no Button in Upgrade.php :(
User avatar
Borsti
WR.net Journeyman
WR.net Journeyman
 
Posts: 87
Joined: Sat Jul 08, 2006 11:37 am
Location: Hamburg/Germany

Gatherer v0.1 [Roster 1.7.3 addon]

Postby Vasting » Sat Mar 24, 2007 5:01 pm

Well I got everything installed but when I try to upload my gatherer.lua it doesn't actually write anything to the database.
Vasting
WR.net Apprentice
WR.net Apprentice
 
Posts: 10
Joined: Thu Mar 22, 2007 12:32 am

Gatherer v0.1 [Roster 1.7.3 addon]

Postby DopeFish » Sat Mar 24, 2007 10:50 pm

after a lot of fiddling with the code, I got it to upload data to the database. can't use it though since the flash applet never changes.

some feedback:
- add some hints about how to edit the upload.php for people who aren't used to playing around with the internal working of wowroster. The changes aren't hard, but kinda tricky (figuring out what array name to write stuff to).
- hmm, I'd prefix the database table with _addon so it is more in line with the other addons out there.
- localization for deDE overwrites the bookworm_addon var.
- the flash won't display anything. If I had to guess, I'd say it's not grabbing the database conenction info right since it tries to connect to localhost for some reason.
Last edited by DopeFish on Sat Mar 24, 2007 10:54 pm, edited 1 time in total.
DopeFish
WR.net Apprentice
WR.net Apprentice
 
Posts: 10
Joined: Thu Jul 06, 2006 2:44 am

Re: Gatherer v0.1 [Roster 1.7.3 addon]

Postby Vasting » Sun Mar 25, 2007 5:12 am

For whatever reason the flash file is actually configured to grab from localhost... I've got that part figured out and fixed. This version should work right. I've not been able to test it cause I haven't figured out how to get everything working to parse the data. :scratch: Think you could give me some hints?
Attachments
gatherer.swf.zip
Modified swf should work haven't tested though.
(7 KiB) Downloaded 394 times
Last edited by Vasting on Sun Mar 25, 2007 5:16 am, edited 3 times in total.
Vasting
WR.net Apprentice
WR.net Apprentice
 
Posts: 10
Joined: Thu Mar 22, 2007 12:32 am

Gatherer v0.1 [Roster 1.7.3 addon]

Postby MattM » Sun Mar 25, 2007 5:38 am

neat addon Foxy
MattM
UA/UU Developer
UA/UU Developer
Gimpy Developer
Gimpy Developer
 
Posts: 886
Joined: Tue Jul 04, 2006 9:53 pm
Location: USA

Re: Gatherer v0.1 [Roster 1.7.3 addon]

Postby Vasting » Sun Mar 25, 2007 6:45 am

Ok I figured out what was wrong... Here's how I got things working:
In file update.php
Find:
Code: Select all
$filefields[] = 'characterprofiler';
$filefields[] = 'pvplog';
$filefields[] = 'ct_raidtracker';
$filefields[] = 'bookworm';
$filefields[] = 'guildeventmanager2';
$filefields[] = 'groupcalendar'

Below that add:
Code: Select all
$filefields[] = 'gatherer'


Find:
Code: Select all
                    // Clear the $data variable
                    
unset($data); 

Above that add:
Code: Select all
// If Gather data is there, assign it to $uploadData['GatherItems']
if( isset($data['GatherItems']) )
{
$uploadData['GatherItems'] = $data['GatherItems'];
}
 
Vasting
WR.net Apprentice
WR.net Apprentice
 
Posts: 10
Joined: Thu Mar 22, 2007 12:32 am

Gatherer v0.1 [Roster 1.7.3 addon]

Postby Ulminia » Sun Mar 25, 2007 7:30 am

verry nice except when i upload my data it imports the same stuff every time fills the tabel really fast when you have loged like 1500 things lol
Ulminia of Zangarmarsh
Zonous of Zangarmarsh
Author of Roster Gallery
WoWRoster-Profiler Redesigner
User avatar
Ulminia
WoWRoster.net Dev Team
WoWRoster.net Dev Team
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 1223
Joined: Tue Jul 04, 2006 4:41 pm
Location: New Brunswick, Canada
Realm: Zangarmarsh (PvE) - US
gmail/gtalk: ulminia@gmail.com

Re: Gatherer v0.1 [Roster 1.7.3 addon]

Postby Vasting » Sun Mar 25, 2007 7:52 am

Yeah I've noticed that as well it will definitely fill the table pretty quick. But as was said it's still beta. I'm sure the next version will filter through the results and make sure not to import duplicates.

Also I noticed there were quite a few map images that were missing, so I went ahead and made them. Unzip this to your roster/addons/gatherer/images/ directory it should just contain the maps that were missing and I think I got them all let me know if theres still one that I'm missing.

It won't let me upload it cause of file size so grab it from my server.
Vasting
WR.net Apprentice
WR.net Apprentice
 
Posts: 10
Joined: Thu Mar 22, 2007 12:32 am

Next

Return to Gatherer

Who is online

Users browsing this forum: No registered users and 1 guest

cron