anjasoleil1 Posted November 21, 2017 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 66 Reputation: 0 Joined: 05/11/14 Last Seen: January 30 Share Posted November 21, 2017 Hi, I've been experimenting with this script I made, and would appreciate it if you can share ways to sort the NPC shop by name or etc... This is the script: Quote prontera,117,140,0 shop itemtype0 101,1:0 prontera,118,140,0 shop itemtype2 101,1:0 prontera,119,140,0 shop itemtype3 101,1:0 prontera,120,135,0 shop itemtype4 101,1:0 prontera,121,135,0 shop itemtype5 101,1:0 prontera,122,140,0 shop itemtype6 101,1:0 prontera,123,140,0 shop itemtype7 101,1:0 prontera,124,140,0 shop itemtype8 101,1:0 prontera,125,140,0 shop itemtype10 101,1:0 prontera,126,140,0 shop itemtype11 101,1:0 prontera,127,140,0 shop itemtype12 101,1:0 prontera,128,140,0 shop itemtype18 101,1:0 - script itemsorter 1_M_02,{ OnInit: freeloop(1); for( $@i = 500; $@i < 31172; $@i++ ){ //announce $@i,0; if(getiteminfo($@i,3) >= 1){ npcshopadditem "itemtype" + getiteminfo($@i,2),$@i,(getiteminfo($@i,0)); } } } Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted November 22, 2017 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted November 22, 2017 you can try refer to this topic to adjust your script. change the SQL query to order the result based on item name...something... SELECT * FROM `item_db` ORDER BY `item_db`.`item_name` make sure you have the complete SQL table with data inside. Just play around with the SQL query. Quote Link to comment Share on other sites More sharing options...
Question
anjasoleil1
Hi, I've been experimenting with this script I made, and would appreciate it if you can share ways to sort the NPC shop by name or etc... This is the script:
Link to comment
Share on other sites
1 answer 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.