Jump to content
  • 0

SQL, reward top 3.


HristDead

Question


  • Group:  Members
  • Topic Count:  66
  • Topics Per Day:  0.02
  • Content Count:  167
  • Reputation:   2
  • Joined:  08/01/12
  • Last Seen:  

Hi rAthena!

 

I'm trying to create a script were the top 3 MvP players get 3x Old card album. Everything seems to go well, the table truncates fine but the issue is that the reward isn't put in the players inventory.

What did I do wrong?

MvPRank:
	mes "This will clear the current MvP ranking.";
	menu "Do it!",-;	
	next;
	mes "[Rank Controller]";
	mes "Inserting prize for Top 3 Player...";
	query_sql( "SELECT `char_id`, `key`, `value` FROM `char_reg_num` ORDER BY `value` DESC LIMIT 3",.@char_idmvp, .@key, .@Count );
	query_sql( "INSERT INTO `inventory` (`char_id`, `nameid`, `amount`, `equip`, `identify`) VALUES ("+.@char_idmvp+", "+617+", "+3+", 0, 1)");
	sleep2 500;
	mes "Truncating MvP ranking tables....";
	query_sql("DELETE FROM `char_reg_num` WHERE `key` = 'MVP_Rank'");
	sleep2 1000;
	mes "All done~";
	close;

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 1

  • Group:  Content Moderator
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  639
  • Reputation:   596
  • Joined:  11/25/11
  • Last Seen:  

Adding it to SQL won't make it magically appears on people's inventory, it's just not how it works.
When a player is online, all his belongings, statuses and everything that can be changed on the go is loaded into temporary data, and it's saved again every x minutes.

So the game saves it to SQL for this kind of data, not the opposite.

For it to work, check if the player is online, if it is, give him the reward, if not, then you can add directly via SQL, or insert it into a mail or something like that.

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