Currently Posted September 14, 2015 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Share Posted September 14, 2015 Can anybody help? NPC check IF statement that a player must have an item id of 20000 or above in inventory to proceed? Quote Link to comment Share on other sites More sharing options...
GreenMagic793 Posted September 16, 2015 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 157 Reputation: 19 Joined: 08/18/15 Last Seen: April 5, 2023 Share Posted September 16, 2015 Post your script please. Quote Link to comment Share on other sites More sharing options...
Scylla Posted September 16, 2015 Group: Members Topic Count: 47 Topics Per Day: 0.01 Content Count: 374 Reputation: 47 Joined: 03/27/13 Last Seen: March 12 Share Posted September 16, 2015 (edited) Can anybody help? NPC check IF statement that a player must have an item id of 20000 or above in inventory to proceed? From https://rathena.org/wiki/Getinventorylist Try this: getinventorylist; for(set .@i,0; .@i < @inventorylist_count; set .@i,.@i+1){ if(@inventorylist_id[.@i] >= 20000){ // Item ID 20000 + mes "You have an " + .@i + " with you!"; close; } } mes "You don't have an apple with you :("; close; Dunno if what i did on mes is right, i guess you could make something out of that one you wanted. Edited September 16, 2015 by Mary Magdalene 1 Quote Link to comment Share on other sites More sharing options...
Currently Posted September 17, 2015 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Author Share Posted September 17, 2015 thank you! -Bump- Sorry, but I just realized that the player must be wearing the headgear that is item ID of 20000 and above. Quote Link to comment Share on other sites More sharing options...
Scylla Posted September 17, 2015 Group: Members Topic Count: 47 Topics Per Day: 0.01 Content Count: 374 Reputation: 47 Joined: 03/27/13 Last Seen: March 12 Share Posted September 17, 2015 thank you! -Bump- Sorry, but I just realized that the player must be wearing the headgear that is item ID of 20000 and above. I don't know if that's possible but please check this: https://rathena.org/wiki/Getequipid Quote Link to comment Share on other sites More sharing options...
Stolao Posted September 17, 2015 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: March 19 Share Posted September 17, 2015 thank you! -Bump- Sorry, but I just realized that the player must be wearing the headgear that is item ID of 20000 and above. I don't know if that's possible but please check this: https://rathena.org/wiki/Getequipid simple if(getequipid(EQI_HEAD_TOP) > 20000 || getequipid(EQI_HEAD_MID) > 20000 || getequipid(EQI_HEAD_LOW) > 20000) 1 Quote Link to comment Share on other sites More sharing options...
Scylla Posted September 17, 2015 Group: Members Topic Count: 47 Topics Per Day: 0.01 Content Count: 374 Reputation: 47 Joined: 03/27/13 Last Seen: March 12 Share Posted September 17, 2015 thank you! -Bump- Sorry, but I just realized that the player must be wearing the headgear that is item ID of 20000 and above. I don't know if that's possible but please check this: https://rathena.org/wiki/Getequipid simple if(getequipid(EQI_HEAD_TOP) > 20000 || getequipid(EQI_HEAD_MID) > 20000 || getequipid(EQI_HEAD_LOW) > 20000) Lol i wasn't thinking very well. This'll work. Quote Link to comment Share on other sites More sharing options...
Stolao Posted September 17, 2015 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: March 19 Share Posted September 17, 2015 Lol i wasn't thinking very well. This'll work. XD is ok happens to all of us 1 Quote Link to comment Share on other sites More sharing options...
Currently Posted September 17, 2015 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Author Share Posted September 17, 2015 Thanks guys! Quote Link to comment Share on other sites More sharing options...
Question
Currently
Can anybody help?
NPC check IF statement that a player must have an item id of 20000 or above in inventory to proceed?
Link to comment
Share on other sites
8 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.