Lilori Posted July 29, 2023 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 10 Reputation: 1 Joined: 07/23/17 Last Seen: Sunday at 07:48 PM Share Posted July 29, 2023 Hi rA community! I want to ask how to set an input NPC that can't duplicate same values (number only) and write it on sql? For example player A already input number 10, then when player B tries to input number 10, NPC can't proceed it. Thank you! Quote Link to comment Share on other sites More sharing options...
0 Winterfox Posted July 29, 2023 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 245 Reputation: 92 Joined: 06/30/18 Last Seen: November 27, 2024 Share Posted July 29, 2023 (edited) mes "Pick your number!"; next; input(.@number); .@rowCount = query_sql("SELECT `number` FROM numberdb WHERE `number` = " + .@number + ";"); if(.@rowCount == 1) { mes "This number is already used. Try again."; close; } query_sql("INSERT INTO numberdb (`number`) VALUES (" + .@number + ");"); Edited July 29, 2023 by Winterfox 1 Quote Link to comment Share on other sites More sharing options...
0 Lilori Posted July 31, 2023 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 10 Reputation: 1 Joined: 07/23/17 Last Seen: Sunday at 07:48 PM Author Share Posted July 31, 2023 On 7/29/2023 at 11:47 PM, Winterfox said: mes "Pick your number!"; next; input(.@number); .@rowCount = query_sql("SELECT `number` FROM numberdb WHERE `number` = " + .@number + ";"); if(.@rowCount == 1) { mes "This number is already used. Try again."; close; } query_sql("INSERT INTO numberdb (`number`) VALUES (" + .@number + ");"); omg that's works like a charm! thank you! Quote Link to comment Share on other sites More sharing options...
Question
Lilori
Hi rA community!
I want to ask how to set an input NPC that can't duplicate same values (number only) and write it on sql?
For example player A already input number 10, then when player B tries to input number 10, NPC can't proceed it.
Thank you!
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.