Looty

External page that displays guild bank data from the Roster database

Moderator: trell

Looty

Postby Mathos » Sat Nov 18, 2006 11:40 pm

Okidoki, though, as I understand it, it is no addon at all, but a seperate system just querying the tables from Roster.
It would be nicer to have it integrated into Roster as an addon rather than a seperate application.
That way it will be easier to upgrade once roster would change database layouts and stuff like that :)
User avatar
Mathos
Gimpy Developer
Gimpy Developer
 
Posts: 117
Joined: Wed Jul 05, 2006 11:00 am

Re: Looty

Postby derangedtaco » Mon Nov 27, 2006 10:07 am

hey i've got a question..

how can i disable the tooltips? i dislike them... i could just delete the script file, but then it isnt very clean and generates errors..how can i turn it off cleanly

and also whats with this
Unique

Requires Level 50
\"Dark runes skitter across the surface.\"
<Right Click to Read>

the quotes in the item text are screwing up the php? guess so. well it'd be nice to fix that, cuz it looks screwed up :thumright:
derangedtaco
WR.net Apprentice
WR.net Apprentice
 
Posts: 39
Joined: Fri Nov 24, 2006 12:24 am

Looty

Postby robojerk » Mon Nov 27, 2006 3:07 pm

The "\" marks are appearing because the script was written with the intention of having magic quotes turned on..


http://www.zend.com/manual/security.magicquotes.php
Last edited by robojerk on Thu Dec 14, 2006 6:14 pm, edited 1 time in total.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Looty

Postby PleegWat » Mon Nov 27, 2006 5:19 pm

Close. I think it probably worked with both in 1.7.0, correctly taking care of magic quotes. However starting 1.7.1 the roster framework takes care of magic quotes for you, meaning you should always code as if magic quotes are on.
I <3 /bin/bash
User avatar
PleegWat
WoWRoster.net Dev Team
WoWRoster.net Dev Team
 
Posts: 1636
Joined: Tue Jul 04, 2006 1:43 pm

Re: Looty

Postby derangedtaco » Tue Nov 28, 2006 6:44 am

ok that's confusing as hell...haha what do i have to do to make it work :P

and also how can i turn off the bold on blues+purples..it bugs me :shaking:

also i still need help to disable the tooltips
Last edited by derangedtaco on Tue Nov 28, 2006 4:36 pm, edited 2 times in total.
derangedtaco
WR.net Apprentice
WR.net Apprentice
 
Posts: 39
Joined: Fri Nov 24, 2006 12:24 am

Re: Looty

Postby derangedtaco » Wed Nov 29, 2006 4:46 pm

derangedtaco wrote:ok that's confusing as hell...haha what do i have to do to make it work :P

and also how can i turn off the bold on blues+purples..it bugs me :shaking:

also i still need help to disable the tooltips

heeelp pls :scratch: :scratch:
derangedtaco
WR.net Apprentice
WR.net Apprentice
 
Posts: 39
Joined: Fri Nov 24, 2006 12:24 am

Looty

Postby robojerk » Wed Nov 29, 2006 10:11 pm

TO disable the tooltips you could try removing these lines from index.php
Code: Select all
<script type="text/javascript">
<? include 'bits/tooltips.js'; ?>
</script>
Last edited by robojerk on Wed Nov 29, 2006 10:12 pm, edited 1 time in total.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Looty

Postby robojerk » Wed Nov 29, 2006 10:16 pm

derangedtaco wrote:how can i turn off the bold on blues+purples
You could try editing the /bits/bank.css file.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Re: Looty

Postby derangedtaco » Thu Nov 30, 2006 6:59 am

robojerk wrote:TO disable the tooltips you could try removing these lines from index.php
Code: Select all
<script type="text/javascript">
<? include 'bits/tooltips.js'; ?>
</script>

i tried that. but then in IE, after i took that part out, it says that there's errors on the page, which indicates that somewhere else in the index page it's trying to call the same js file..which isnt included...so it's screwed up..where is the other location where it tries to use the script

for the bold problem.
it was:
Code: Select all
table.loot    { border: 1px solid black; }
td.loothead    { color: black; font-weight: bold; background-color: #AAA; }
td.item        { padding: 4px; background-color: #333; }
td.itemlight    { padding: 4px; background-color: #444; }


and i changed it to
Code: Select all
table.loot   { border: 1px solid black; }
td.loothead   { color: black; background-color: #AAA; }
td.item      { padding: 4px; background-color: #333; }
td.itemlight   { padding: 4px; background-color: #444; }


but it still shows as bold. :neutral:
derangedtaco
WR.net Apprentice
WR.net Apprentice
 
Posts: 39
Joined: Fri Nov 24, 2006 12:24 am

Re: Looty

Postby Zoya » Sat Dec 02, 2006 2:44 am

Anyone have any experience with the BankSite/PossessionScan addon?

http://www.curse-gaming.com/en/wow/addo ... h-url.html

It seemed to work nicely to begin with, but now since the original bank scan I cannot get the inventory list to update and I also cannot figure out how to scan additional characters' banks.

Would Looty, or any other similar programs/addons work for simply wanting a way to make a list of bank items and have that inventory list displayed nicely on a website?

Thanks much!
Last edited by Zoya on Sat Dec 02, 2006 2:47 am, edited 1 time in total.
User avatar
Zoya
WR.net Apprentice
WR.net Apprentice
 
Posts: 1
Joined: Sat Dec 02, 2006 2:33 am

Re: Looty

Postby derangedtaco » Sun Dec 03, 2006 5:51 pm

derangedtaco wrote:
robojerk wrote:TO disable the tooltips you could try removing these lines from index.php
Code: Select all
<script type="text/javascript">
<? include 'bits/tooltips.js'; ?>
</script>

i tried that. but then in IE, after i took that part out, it says that there's errors on the page, which indicates that somewhere else in the index page it's trying to call the same js file..which isnt included...so it's screwed up..where is the other location where it tries to use the script

for the bold problem.
it was:
Code: Select all
table.loot    { border: 1px solid black; }
td.loothead    { color: black; font-weight: bold; background-color: #AAA; }
td.item        { padding: 4px; background-color: #333; }
td.itemlight    { padding: 4px; background-color: #444; }


and i changed it to
Code: Select all
table.loot   { border: 1px solid black; }
td.loothead   { color: black; background-color: #AAA; }
td.item      { padding: 4px; background-color: #333; }
td.itemlight   { padding: 4px; background-color: #444; }


but it still shows as bold. :neutral:

help pls :shaking:
derangedtaco
WR.net Apprentice
WR.net Apprentice
 
Posts: 39
Joined: Fri Nov 24, 2006 12:24 am

Looty

Postby sagron » Wed Dec 06, 2006 3:30 am

I haven't used this but look for where it is generating the links, there should be an OnMouseOver call and another one after that (can't think of name but it's like mouse leaving) and copy the entire thing (including everything in parenthesis) and then do a mass replace with empty space. Should remove them completely.
sagron
WR.net Apprentice
WR.net Apprentice
 
Posts: 4
Joined: Mon Nov 27, 2006 2:42 am

Looty

Postby robojerk » Wed Dec 06, 2006 6:04 am

I'm not the author of this mod and have helped people out that asked.. However I'm currently taking an extended break from WoW and don't know if/when I'll return.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Re: Looty

Postby derangedtaco » Wed Dec 06, 2006 7:18 am

ok. as you can see, i got the tooltip to stop displaying - without generating any errors. but also now it shows no color on any items.. ugh :shaking:

anybody help??

nvm, got it.all done
Last edited by derangedtaco on Fri Dec 08, 2006 5:57 am, edited 2 times in total.
derangedtaco
WR.net Apprentice
WR.net Apprentice
 
Posts: 39
Joined: Fri Nov 24, 2006 12:24 am

Looty

Postby Nôrrec » Thu Dec 14, 2006 6:01 pm

I have a porblem with looty and the new WoW Patch.

I've updated my Wowroster 1.7.1 to 1.7.2 and uploaded the guildbank data
now looty is not showing the items any longer. It's just telling an error:

Warning: Invalid argument supplied for foreach() in /usr/export/www/vhosts/funnetwork/hosting/calistoo/looty/index.php on line 476


check: http://calistoo.ca.funpic.de/e107_plugi ... wrap.php?3
and http://calistoo.ca.funpic.de/yroster/ for the roster itself
Nôrrec
WR.net Apprentice
WR.net Apprentice
 
Posts: 2
Joined: Thu Dec 14, 2006 3:02 pm

PreviousNext

Return to Looty

Who is online

Users browsing this forum: No registered users and 0 guests

cron