Jump to content

c2greentea

Members
  • Posts

    173
  • Joined

  • Last visited

Everything posted by c2greentea

  1. Whats the problem with my item rewards npc script? http://upaste.me/r/9ae61447479e8a7b0 Gm lvl 10 can't access the gm menu? Even if i put 5, 10 in the gmaccess and reloadscript, only the 99 can access the gmmenu?
  2. Is there something wrong with this script before I implement it? It is supposed to increase the official rates by x2 on Saturday 12 am and change back to the official rates on Sunday, after 24 hours. //===== rAthena Script ======================================= //= Floating Rates //===== Support ============================================== //= Vist: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/script_commands.txt //= to know how to change the time settings //===== By: ================================================== //= Mysterious //===== Current Version: ===================================== //= 1.5 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= EXP Doubles on Weekends //===== Other Information: =================================== // Every weekend, starting on Fridays, players will gain // double EXP. The script will announce when Double EXP has // begun so that players know. //===== TODO: ================================================ // 1) Optimize script a little more // 2) Make script more friendly //===== Additional Comments: ================================= //= v1.0 - Intitial Re-release [Mysterious] //= v1.1 - Made it so that it starts on Friday, ends on Sunday [Mysterious] //= v1.2 - Optimized entire script [Mysterious] //= v1.3 - Made it more friendly [Mysterious] //= v1.4 - Optimized [Mysterious] //= v1.5 - Adjusted a few things [Mysterious] //============================================================ - script FloatingRates -1,{ OnInit: //Note: You can always set a standard exp. rate or set it as a rand set $@brate, 35000; // Change the value here for your Base Experience set $@jrate, 35000; // Change the value here for your Job Experience set $@drate, 10000; // ========================= OnClock0000: if( gettime(4)==6 ) { //Saturday //Base Experience setbattleflag("base_exp_rate",$@brate); //Job Experience setbattleflag("job_exp_rate",$@jrate); //Drops setbattleflag("item_rate_common",$@drate); setbattleflag("item_rate_heal",$@drate); setbattleflag("item_rate_use",$@drate); setbattleflag("item_rate_equip",$@drate); // Reload the database atcommand "@reloadmobdb"; announce "X2 increased EXP and DROP rates for this whole Saturday starts now! Enjoy!",bc_all,0xFF6060; } end; } - script FloatingAnn#1 -1,{ OnClock0000: if(gettime(4) == 0) { // On Saturday at 11:59pm server time, Double EXP event will end announce "X2 increased EXP and DROP rates has ended!",bc_all,0xFF6060; setbattleflag("base_exp_rate", 5000 ); // Set this rates back to your regular server's rates setbattleflag("job_exp_rate", 5000 ); // Set this rates back to your regular server's rates //Drops setbattleflag("item_rate_common", 900 ); setbattleflag("item_rate_heal", 900 ); setbattleflag("item_rate_use", 900 ); setbattleflag("item_rate_equip", 900 ); atcommand "@reloadmobdb"; } end; }
  3. I need an NPC accessible by group lvl 10 and above. The GM can choose max of 3 items from the list of item IDs available, input certain amount for each item IDs, and type the exact name of the player. After that, the items input by the GM will be received by the player.
  4. If anti-proxy / proxy detection is disabled and a player can vote multiple times using multiple accounts via proxy websites, will the gamesites (xtremetop, for ex) still accept every vote for as long as its from unique IP address?
  5. I need an NPC that would exchange junk cards to a random amount of item NPC. NPC would read the available cards in the inventory and player can choose from it. Then he will receive a random amount of item.
  6. I'm not sure if both but given if it's both Cydh?
  7. Capuche how am i going to do that with the given script above? Sorry
  8. This is my Poring Race script: http://upaste.me/11a714121c1819289 I'm not sure what happened but as soon as the script announces "GOO!", all the porings disappeared but the script continued to broadcast and even broadcasted which poring won. Please help.
  9. This is my Poring Race script: http://upaste.me/11a714121c1819289 I'm not sure what happened but as soon as the script announces "GOO!", all the porings disappeared but the script continued to broadcast and even broadcasted which poring won. Please help.
  10. Is there an existing list of monster IDs in pre-renewal / classic RO online? Or I have to get them one by one? I am trying to put it in my disguise event script. Im using this script: http://upaste.me/e35214119344c4280
  11. I tried to put my server on maintenance today. Changed the "Minimum account group id required to connect to server" to lvl 10. But after I log in, client freeze. 0 visible NPCs and can't move. Tried grp lvl 99 and lvl 10 separately in different PCs to no avail. Solved. Duplicate entry in groups.conf
  12. Thanks. Or rather the questions is, enabling that what will happen?
  13. What type of picklog would appear in the database if the player gets an item from a fluxcp addon named Freebies? (link: http://rathena.org/board/topic/79803-freebies-for-fluxcp-free/) Help pls
  14. A player using his Taekwon reported he don't miss on emperium when in emperium breaker test room. But in WOE, his hits are 100% miss. He also told that his other friend which uses Taekwon also encounters the same prob. What seems to be the problem with my server?
  15. Euphy how to enable it though? With that way, how will I be able to trace duped items?
  16. Meaning, it's possible to duplicate items while harmony is installed?
×
×
  • Create New...