iRO Wiki Database Project - Consumable and Etc items - Page 4 - Ragnarok Online Community Chat - WarpPortal Community Forums

Jump to content


Photo
- - - - -

iRO Wiki Database Project - Consumable and Etc items


  • Please log in to reply
113 replies to this topic

#76 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 01 September 2015 - 07:02 PM

Line 592 of classic's info.php I just changed the query

 

was

    dbQuery("SELECT id, name, category, subcat, visible2 FROM item_main ORDER BY id", "menuData");

 

 

now

 

    dbQuery("SELECT id, name, category, subcat, visible2 FROM item_main LEFT JOIN item_misc USING (id) WHERE version != 2 ORDER BY id", "menuData");

 

This has stopped it from listing renewal items in the dropdown menus like it was


  • 0

#77 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 01 September 2015 - 07:04 PM

Okay so at the end of the day it seems like I have it working now so that version=2 items stay outta the classic DB and version=3 items stay out of the renewal DB


  • 0

#78 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 01 September 2015 - 07:46 PM

I've updated my tools to allow classic-only to be set as the version


  • 0

#79 Themes

Themes

    Too Legit To Quit

  • Members
  • 1412 posts
  • Playing:Nothing

Posted 01 September 2015 - 07:48 PM

Thank you, you're a hero!


  • 0

#80 Themes

Themes

    Too Legit To Quit

  • Members
  • 1412 posts
  • Playing:Nothing

Posted 01 September 2015 - 09:44 PM

Thanks again for doing that, I just submitted an entry for ACAs, lets see if it breaks anything!


  • 0

#81 AlmrOfAtlas

AlmrOfAtlas

    They pay me to post.

  • Members
  • 6533 posts
  • Playing:Nothing

Posted 01 September 2015 - 10:30 PM

Thanks again for doing that, I just submitted an entry for ACAs, lets see if it breaks anything!

 

For Classic? ACAs aren't yet visible to searches or the drop down under Usable > Item Giver. Just OCAs, MCAs, and CCAs which I don't believe we have on the server.


  • 0

#82 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 02 September 2015 - 06:14 AM

For Classic? ACAs aren't yet visible to searches or the drop down under Usable > Item Giver. Just OCAs, MCAs, and CCAs which I don't believe we have on the server.


He submitted it but I did not sign off on it yet. That is how my tool works. Its in now.

http://db.irowiki.or...tem-info/19468/
  • 0

#83 Necrohealiac

Necrohealiac

    10,000 posts and not even a Tiki-Shirt.

  • Members
  • 13389 posts
  • Playing:Ragnarok Online
  • Server:Chaos

Posted 02 September 2015 - 07:14 AM

for some reason the description is doubling up on this item:

http://db.irowiki.or...tem-info/24062/

also the set bonus description is missing on the other piece:

http://db.irowiki.or...tem-info/24052/
  • 0

#84 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 02 September 2015 - 07:23 AM

I will take a look tonight
  • 0

#85 Necrohealiac

Necrohealiac

    10,000 posts and not even a Tiki-Shirt.

  • Members
  • 13389 posts
  • Playing:Ragnarok Online
  • Server:Chaos

Posted 02 September 2015 - 07:27 AM

u da best jaye
  • 0

#86 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 02 September 2015 - 08:11 AM

I know :v
  • 0

#87 Themes

Themes

    Too Legit To Quit

  • Members
  • 1412 posts
  • Playing:Nothing

Posted 02 September 2015 - 10:41 AM

Cool!

 

It's not currently showing up on a search, but I think it's just adding the join to the search page, I'll do it in like 20 minutes. Actually looks like it's showing up in the Renewal search (not Classic) too, if you dont mind I'll add your join to that as well to make anything not the Renewal versions disappear from that.


  • 0

#88 Themes

Themes

    Too Legit To Quit

  • Members
  • 1412 posts
  • Playing:Nothing

Posted 02 September 2015 - 11:00 AM

Ok changed Classics search.php from

 

dbQuery("SELECT id, name, category, subcat FROM item_main LEFT JOIN item_adjective USING (id) JOIN item_misc USING (id) WHERE
($whereCon) AND visible=1 AND (version = 1 OR version = 0) ORDER BY name", "searchResults-item");

 

to

dbQuery("SELECT id, name, category, subcat FROM item_main LEFT JOIN item_adjective USING (id) JOIN item_misc USING (id) WHERE
($whereCon) AND visible=1 AND (version = 1 OR version = 0 OR version = 3) ORDER BY name", "searchResults-item");

 

and Renewals search.php from

dbQuery("SELECT id, name, category, subcat FROM item_main LEFT JOIN item_adjective USING (id) WHERE
($whereCon) AND visible2=1 ORDER BY name", "searchResults-item");

 

to

dbQuery("SELECT id, name, category, subcat FROM item_main LEFT JOIN item_adjective USING (id) JOIN item_misc USING (id) WHERE
($whereCon) AND visible2=1 AND version != 3 ORDER BY name", "searchResults-item");

 

The ACA now appears in the Classic search and isnt in the Renewal Search.


  • 0

#89 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 02 September 2015 - 11:00 AM

I think I just didn't edit the php for consumable seatch yet.

Edit: yup

Edited by Jaye, 02 September 2015 - 11:01 AM.

  • 0

#90 Themes

Themes

    Too Legit To Quit

  • Members
  • 1412 posts
  • Playing:Nothing

Posted 02 September 2015 - 11:02 AM

It's just the search page itself, it has its own query that needed to be changed. I think I ended up changing two queries to stop Renewal items appearing on Classic, the drop down menu which you did and the search page which I just did there, had to add version 3 for classic and filter anything but 3 for Renewal


Edited by Themes, 02 September 2015 - 11:03 AM.

  • 0

#91 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 02 September 2015 - 12:16 PM

I had already made the same chsnges for the weapon searches just not the consumable one
  • 0

#92 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 02 September 2015 - 07:44 PM

Athena Earring - http://db.irowiki.or...tem-info/24051/ - Now properly an earring.

 

All of the shadow shields and footgear -

Standardized their language with other DB items, e.g., "Reduces damage received from [Insect] race by 1%." and "Increases physical damage against [Insect] race monsters by an additional 1%"

Fixed all of their set effects

 

Bloody doesn't have doubled stuff anymore.


Edited by Jaye, 02 September 2015 - 07:46 PM.

  • 1

#93 Necrohealiac

Necrohealiac

    10,000 posts and not even a Tiki-Shirt.

  • Members
  • 13389 posts
  • Playing:Ragnarok Online
  • Server:Chaos

Posted 03 September 2015 - 05:07 AM

yey
  • 0

#94 beaupoem

beaupoem

    Too Legit To Quit

  • Members
  • 4239 posts
  • LocationMora
  • Playing:Ragnarok Online
  • Server:Chaos

Posted 12 September 2015 - 12:41 PM

not sure what happened, but you can't search gears by their effects anymore. nothing shows up in the results


  • 0

#95 Necrohealiac

Necrohealiac

    10,000 posts and not even a Tiki-Shirt.

  • Members
  • 13389 posts
  • Playing:Ragnarok Online
  • Server:Chaos

Posted 14 September 2015 - 07:17 AM

not at home so i cannot confirm but i swear that there was an additional set bonus for the hard shadow armor/champion shoes set that gives you sp/hp inc depending on the total refine of the set

http://db.irowiki.or...tem-info/24028/
http://db.irowiki.or...tem-info/24025/

divine-pride has it, incidentally

http://www.divine-pr...on-shoes-shadow
http://www.divine-pr...rd-shadow-armor
  • 0

#96 Necrohealiac

Necrohealiac

    10,000 posts and not even a Tiki-Shirt.

  • Members
  • 13389 posts
  • Playing:Ragnarok Online
  • Server:Chaos

Posted 15 September 2015 - 06:43 AM

dunno where this -10% demi magic reduction effect came from but it doesn't look right.

https://forums.warpp...wing/?p=2273881
  • 0

#97 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 15 September 2015 - 10:55 AM

Fixed the shadow gear and faw.

Edit: also improved wing headphone entry: http://db.irowiki.or...item-info/5963/

The search results thing I still need to look into.

Edited by Jaye, 15 September 2015 - 11:09 AM.

  • 1

#98 Kadelia

Kadelia

    Rainbow Sparkle, Go!

  • Members
  • 14312 posts
  • LocationVirginia, USA
  • Playing:Ragnarok Online
  • Server:Chaos/Renewal

Posted 17 September 2015 - 05:31 AM

I corrected some incorrect stuff about Wing Headphones [1]

 

It has 24 DEF and adds +3 INT, which aren't documented in the in-game desc for some reason (just like applicable job, what headgear slots...

It really does weigh 1 which is weird.


  • 0

#99 Necrohealiac

Necrohealiac

    10,000 posts and not even a Tiki-Shirt.

  • Members
  • 13389 posts
  • Playing:Ragnarok Online
  • Server:Chaos

Posted 17 September 2015 - 05:33 AM

it's light as a feather, but it takes up A LOT of space on your face
  • 0

#100 gozaru

gozaru

    I made it Off Topic

  • Members
  • 70 posts
  • Locationassassin house
  • Playing:Ragnarok Online
  • Server:Valkyrie

Posted 09 December 2015 - 08:14 PM

Rebel patch -add:12/19/15-
Spoiler


not add yet
Spoiler

Edited by gozaru, 18 December 2015 - 06:37 AM.

  • 0




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users