Jump to content

item_db help


Cydh

Recommended Posts


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

cool o:! yeah i forgot about 'else' D: alright i will try to edit/update when i finish more items o:

 

i'm having a funny time dealing with this one

24084#
The protective effect of the reinforcement can be obtained in combination with other Armors. Also your power protection is available as a single, but its protective effect is smaller.
CRI + 5.
Each 2 refines add CRI + 1.
When equipped with ^32CD32 gemstone shadow set(armor, shield, shoes, weapon, earring, pendant)^000000
All State + 1.
If the amount of the entire set of refine is equal or superior 45 removes gemstone from the requirement of skills. increase in 100% the SP cost of skills.
When refine total is superior to + 45 reduce % the sp cost of skills.
Class : ^777777Shadow Equipment^000000
Location: ^777777Armor^000000 Weight :^7777770^000000
Required Level :^7777771^000000
Applic

If the amount of the entire set of refine is equal or superior 45 removes gemstone from the requirement of skills. increase in 100% the SP cost of skills.
When refine total is superior to + 45 reduce % the sp cost of skills.

o______o i have never see an effect like that, pretty new for me D: huh well i was into scrip commands looking at https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L2481 to see how i can get the a specified id and if that item refine is = to ? @_@ maybe like this? 

if ((getequipid(EQI_ARMOR) == 24084 && (getrefine()>=12) ) && ((getequipid(EQI_HAND_L) == 24086 && (getrefine()>=11) ) && ((getequipid(EQI_HAND_R) == 24087 && (getrefine()>=11) ) && ((getequipid(EQI_EQI_SHOES) == 24085 && (getrefine()>=11) ) { bonus bNoGemStone,0; bonus bUseSPrate,100; } 

or i just can go by

if ((getequiprefinerycnt( 15 ) >=45) ) { bonus bNoGemStone,0; bonus bUseSPrate,100; }

/spin

also dunno this part

When refine total is superior to + 45 reduce % the sp cost of skills.

89 rep lol i'm not even half of what you got guys  /omg

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

it's item_combo, I think @Lilith or @nanakiwurtz already made something like that.

db/re/item_combo_db.txt#L259

 

If the amount of the entire set of refine is equal or superior 45 removes gemstone from the requirement of skills. increase in 100% the SP cost of skills.

When refine total is superior to + 45 reduce % the sp cost of skills

rough translation from Google Translate?

it supposed if total refine >= 45, no gemstone.

lol the SP part, just leave it alone first. /heh

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

i/t's item_combo, I think @Lilith or @nanakiwurtz already made something like that.

db/re/item_combo_db.txt#L259

 

lol you mean i should leave the item combo script? @____________@

 

Edit:

I couldn't finish them D: huh for now i will leave this o:

[spoilera]

http://pastebin.com/jvJ9Jbz1

[/spoilera]

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

My memory is a bit rusty  /panic 

24084:24085:24086:24087,{ set .@i,getequiprefinerycnt(16) + getequiprefinerycnt(17) + getequiprefinerycnt(18) + getequiprefinerycnt(19) + getequiprefinerycnt(20) + getequiprefinerycnt(21); if(.@i>=45) { bonus bNoGemStone,1; bonus bUseSPrate,100; } }

Add more items to the list, because I didn't fully read Kido's post...

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

@kido, no u should make it! /gg didn't I give you the line that use something like that? /hmm

just like nanakiwurtz wrote, u can remove the set .@i and use constant for item location. /no1

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

huh i'll continue this tonight o:! 

 

so, combo items too? o: alright !

 

/slur

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

and item_trade. in the desc, there is info about item that cannot be traded. xD

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

oh god alright xD then i'll take care of that too /rice

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

Hmm I think this will be shorter, why would we need the .@i temp variable anyway?  /ok

24084:24085:24086:24087,{if(getequiprefinerycnt(16) + getequiprefinerycnt(17) + getequiprefinerycnt(18) + getequiprefinerycnt(19) + getequiprefinerycnt(20) + getequiprefinerycnt(21))>=45){bonus bNoGemStone,1; bonus bUseSPrate,100;}}
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

@Kido, are u done yet? /gg I just finished my 2014 items (at least cleared all item in Ziu file, until kRO 2014-03-26 patch)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

@Kido, are u done yet? /gg I just finished my 2014 items (at least cleared all item in Ziu file, until kRO 2014-03-26 patch)

 

ow i'm not z_z i fell asleep at 3am lol huh i thinked it would be only the item bonus script D: it will take me some time more to do the restrict and combos DDD: but yeah i'm still in it, sry for no updates D:! /spin

 

Edit 2:

 

I will continue later, i'm almost done with the item bonus script, when i end with that i will take care of the combos and restricted and so on ;o going to sleep D: nights :33

 

http://upaste.me/012a125528203a752

 

Can't remember how to reduce a specific skill cool down/delay z_z!

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

for bonuses, doc/item_bonus.txt /heh

 

well, just say give up if you think you can't finish it, I'll take care of it /ok

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

for bonuses, doc/item_bonus.txt /heh

 

well, just say give up if you think you can't finish it, I'll take care of it /ok

 

i didn't say that i can't finish it D: only that it will take me a bit more of time /slur or if i'm going too slow well i did all i can in that time DDD: as you wish, no problem with me /rice

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

give me your latest paste, I'll continue it. /gg

then I prepare more items to script (I smells April ~ May items) /rice

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

give me your latest paste, I'll continue it. /gg

then I prepare more items to script (I smells April ~ May items) /rice

alright o: sorry for not complete it, i just got some extra tasks DD:!

 

http://upaste.me/37f21260189e9f70b

 

it will be deleted in 1 day lol

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

 

give me your latest paste, I'll continue it. /gg

then I prepare more items to script (I smells April ~ May items) /rice

alright o: sorry for not complete it, i just got some extra tasks DD:!

 

http://upaste.me/37f21260189e9f70b

 

it will be deleted in 1 day lol

 

/thx

I'll check them

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

yup np

 

come on ppl let's do some item bonus scripts! /rice

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

if from Ziu (idnum2displaynametable.txt) 2014-04 ~ 2014-05-21, about 70 items. 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  177
  • Topics Per Day:  0.04
  • Content Count:  909
  • Reputation:   247
  • Joined:  11/08/11
  • Last Seen:  

if from Ziu (idnum2displaynametable.txt) 2014-04 ~ 2014-05-21, about 70 items. 

 

post-256-0-82308100-1401479251_thumb.jpg

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

/rice gimme!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  41
  • Topics Per Day:  0.01
  • Content Count:  237
  • Reputation:   19
  • Joined:  06/05/13
  • Last Seen:  

The next thing,

 

0foORmL.jpg?1

Link to comment
Share on other sites

  • 1 year later...

  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

this post no longer need.

thank for everyone who helped

Link to comment
Share on other sites

×
×
  • Create New...