Jump to content
  • 0

Help about my plans


Dvrstle

Question


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

Here's my plan:

Make those +12 to +20 Glorious Weapons reduced to +11 glorious weapons only.

for every 1 refine that was reduced, they will get 25pods.

Please help me =)

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

*downrefitem <equipment slot>;

This command will downgrade an item by - 1 in the specified equipment slot of the

invoking character. So the item will not be destroyed unlike in the failedrefitem script command.

This will also display a 'refine failure' effect on the character and put appropriate

messages into their chat window.

The official scripts seems to use the 'downrefitem' command as a function

instead: 'downrefitem(<number>)' but it returns nothing on the stack. This is

since jAthena, so probably nobody knows for sure why is it so.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

im sorry but its not what i need =)

i need to do it in my phpmyadmin =) how?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  155
  • Topics Per Day:  0.03
  • Content Count:  647
  • Reputation:   16
  • Joined:  11/21/11
  • Last Seen:  

i think in inventory in your sql. find the ID's of Glorious items.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  103
  • Reputation:   28
  • Joined:  09/20/12
  • Last Seen:  

inventory database.

UPDATE `yourDBNAME`.`inventory` SET `refine` = '11' WHERE `inventory`.`id` =ID;

each and every ID.

that is the sql squery for that

or you can load phpmyadmin go to inventory and use

SELECT *

FROM `inventory`

LIMIT 0 , 5000

for example, The select every item you see with a refine of 12+ and set ALL to 11 using phpmyadmin, you can do that with it.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  666
  • Reputation:   93
  • Joined:  04/27/12
  • Last Seen:  

If you use Spre's method, make sure you do a check for the item id, becuase `id` in inventory = # of item dropped since first time. Example i get an apple, its now id 1, you get an apple its now id 2.

so search for `nameid`

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...