Currently Posted February 24, 2013 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 February 24, 2013 Players will exchange the skulls they collected from PvP to a NPC. The NPC will give the players Skull Points. It will rank the highest skull collectors to top 10. Anybody please? Quote Link to comment Share on other sites More sharing options...
Brian Posted February 26, 2013 Group: Members Topic Count: 75 Topics Per Day: 0.02 Content Count: 2223 Reputation: 593 Joined: 10/26/11 Last Seen: June 2, 2018 Share Posted February 26, 2013 prontera,155,180,0 script Skull Points 910,{ switch(select("View PVP Skull Points Ladder:" + (countitem(.ITEMID_SKULL_) ? ("Exchange "+countitem(.ITEMID_SKULL_)+" "+((countitem(.ITEMID_SKULL_)==1)?"Skull":"Skulls")+" --> Points") : "") )) { case 1: query_sql "SELECT `char`.`name`, CAST(`value` AS UNSIGNED) " + "FROM global_reg_value " + "LEFT JOIN `char` ON global_reg_value.char_id=`char`.char_id " + "WHERE global_reg_value.`str`='skull_points' AND CAST(`value` AS UNSIGNED) > 0 " + "ORDER BY CAST(`value` AS UNSIGNED) DESC LIMIT 10", .@name$, .@points; mes "[Top 10 Skull Points]"; for (set .@i,0; .@i<getarraysize(.@name$); set .@i,.@i+1) { mes (.@i+1) +". ^0000FF"+ .@name$[.@i] +"^000000 ("+ .@points[.@i] +((.@points[.@i]==1)?" pt":" pts")+")"; } break; case 2: set .@skulls, countitem(.ITEMID_SKULL_); if (.@skulls < 1) { mes "You don't have any PVP Skulls."; } else { delitem .ITEMID_SKULL_, .@skulls; set skull_points, skull_points + .@skulls; dispbottom "Gained "+.@skulls+" skull points. Total = " + skull_points; } break; } close; OnInit: // should match /src/map/itemdb.h set .ITEMID_SKULL_, 7420; end; } 1 Quote Link to comment Share on other sites More sharing options...
caspa Posted February 27, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Share Posted February 27, 2013 sir how to add reset on this ladder and also i would like to get points and tcg at the same time..mean....... 1 skull = 1point + 1 tcg... Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted February 27, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted February 27, 2013 if (countitem(.ITEMID_SKULL_) < 1) { mes "You don't have any PVP Skulls."; } else { set .@skulls, .ITEMID_SKULL_; delitem .ITEMID_SKULL_, .@skulls; getitem 7227,.@skulls; set skull_points, skull_points + .@skulls; dispbottom "Gained "+.@skulls+" skull points. Total = " + skull_points; } Quote Link to comment Share on other sites More sharing options...
Currently Posted February 27, 2013 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 February 27, 2013 When i exchanged the skulls, it doesn't do anything I used @loadnpc btw. am i suppose to reloadscript? Quote Link to comment Share on other sites More sharing options...
caspa Posted March 2, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Share Posted March 2, 2013 (edited) i'm not getting any items or points whenever i exchange the skulls Edited March 2, 2013 by caspa Quote Link to comment Share on other sites More sharing options...
Currently Posted March 2, 2013 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 March 2, 2013 same here Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted March 2, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted March 2, 2013 Make sure you use the skull with ID 7420, not 7005 Quote Link to comment Share on other sites More sharing options...
caspa Posted March 2, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Share Posted March 2, 2013 yep i'm using the skull that has names on it.... after being killed the 7420 and still don't get any. this is the error i get everytime i try to exchange the skulls Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted March 2, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted March 2, 2013 prontera,155,180,0 script Skull Points 910,{ switch(select("View PVP Skull Points Ladder:" + (countitem(.ITEMID_SKULL_) ? ("Exchange "+countitem(.ITEMID_SKULL_)+" "+((countitem(.ITEMID_SKULL_)==1)?"Skull":"Skulls")+" --> Points") : "") )) { case 1: query_sql "SELECT `char`.`name`, CAST(`value` AS UNSIGNED) " + "FROM global_reg_value " + "LEFT JOIN `char` ON global_reg_value.char_id=`char`.char_id " + "WHERE global_reg_value.`str`='skull_points' AND CAST(`value` AS UNSIGNED) > 0 " + "ORDER BY CAST(`value` AS UNSIGNED) DESC LIMIT 10", .@name$, .@points; mes "[Top 10 Skull Points]"; for (set .@i,0; .@i<getarraysize(.@name$); set .@i,.@i+1) { mes (.@i+1) +". ^0000FF"+ .@name$[.@i] +"^000000 ("+ .@points[.@i] +((.@points[.@i]==1)?" pt":" pts")+")"; } break; case 2: set .@skulls, countitem(.ITEMID_SKULL_); if (.@skulls < 1) { mes "You don't have any PVP Skulls."; } else { delitem .ITEMID_SKULL_, .@skulls; getitem 7227, .@skulls; set skull_points, skull_points + .@skulls; dispbottom "Gained "+.@skulls+" skull points. Total = " + skull_points; } break; } close; OnInit: // should match /src/map/itemdb.h set .ITEMID_SKULL_, 7420; end; } Quote Link to comment Share on other sites More sharing options...
caspa Posted March 2, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Share Posted March 2, 2013 lolsss figured it out.... its on this part set .@skulls, .ITEMID_SKULL_; intoset .@skulls,countitem(.ITEMID_SKULL_); [solved] Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted March 2, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted March 2, 2013 Yes, it caused the error. Quote Link to comment Share on other sites More sharing options...
Currently Posted March 2, 2013 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 March 2, 2013 Oh, now I gain the skull points. However, the ranking does not.. Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted March 2, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted March 2, 2013 The ranking does not, does not what? It didn't increase? Quote Link to comment Share on other sites More sharing options...
Currently Posted March 3, 2013 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 March 3, 2013 Nevermind. Working perfectly. Thank you guys so much! [solved[ Quote Link to comment Share on other sites More sharing options...
Question
Currently
Players will exchange the skulls they collected from PvP to a NPC.
The NPC will give the players Skull Points.
It will rank the highest skull collectors to top 10.
Anybody please?
Link to comment
Share on other sites
14 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.