Jump to content
  • 0

How to wipe specific card in sql


Ace D Potgas

Question


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  31
  • Reputation:   1
  • Joined:  08/04/12
  • Last Seen:  

Hi guys,

 

I wanted to reset the thanatos card that my player already have in the my ragnarok server. I already delete all the card that i found through the sql inventory, cart inventory,mail,storage. Unfortunately, i cant find a way how to reset the card from the player weapon. Is there anyone can help me on this part? I dont know how to reset the thanatos card that were equip on their weapon.  

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

UPDATE `inventory` SET `card0` = 0 WHERE `card0` = 4001;
UPDATE `inventory` SET `card1` = 0 WHERE `card1` = 4001;
UPDATE `inventory` SET `card2` = 0 WHERE `card2` = 4001;
UPDATE `inventory` SET `card3` = 0 WHERE `card3` = 4001;

try this.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

*4399

In addition to running the 4 SQL queries on the `inventory` table, you should also run them on

- auction

- cart_inventory

- guild_storage

- mail

- storage

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  31
  • Reputation:   1
  • Joined:  08/04/12
  • Last Seen:  

If i wanted to wipe a card on other part of equipment, for example headgear or garment? whats the command line in sql?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

Searching the card0, card1, card2, card3 slots will find ALL equipment (weapons, headgear, and garments) with that card.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  31
  • Reputation:   1
  • Joined:  08/04/12
  • Last Seen:  

thanks alot Brian.  /no1

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...