Jump to content

Jaburak

Members
  • Posts

    1125
  • Joined

  • Days Won

    31

Everything posted by Jaburak

  1. If you received it twice, you should removed the first one. announce "مسابقة البحث عن الكنز ستبدء بعد قليل",0; sleep2 5000;
  2. That's for eAthena SVN. Try this one; http://rathena.org/board/topic/58222-ghosts-scripts-latest-ghosts-pvp-system-v13/
  3. How to disable quest, navigation and booking button in client 2012-04-10Ragexe? Thanks in advance!
  4. Kinda hard because I don't understand what's on the message.
  5. Try this; prontera,200,180,4 script Prize Sender Test 123,{ if(!getgmlevel())end; set .@itemtoonlineplayers$,strcharinfo(0); mes "Input Item ID"; Input .@item; if (getitemname(.@item) == "null") { mes "Invalid Item ID"; close; } mes "Input Amount"; input .@inum; if( .@inum <= 0 ) { mes "Invalid Amount"; close; } while( .@V < $PlayerNumber ){ set .@V,.@V+1; message getd("$RecordAID"+.@V),"[[[ System ]]] : "+.@itemtoonlineplayers$+" give you "+getitemname(.@item)+"x"+.@inum; getitem .@item,.@inum,getd("$RecordAID"+.@V); } close; } - script PrizeSenderEvent -1,{ OnInit: if(!getusers(1))while($PlayerNumber)setd "$RecordAID"+(set($PlayerNumber, $PlayerNumber-1)+1),0; end; OnPCLoginEvent: setd "$RecordAID"+set(@AIDNumber,set($PlayerNumber,$PlayerNumber+1)),getcharid(3); end; OnPCLogoutEvent: setd "$RecordAID"+@AIDNumber,getd("$RecordAID"+(set(.@AIDNumber,set($PlayerNumber, $PlayerNumber-1)+1))); attachrid getd("$RecordAID"+@AIDNumber); setd "$RecordAID"+@AIDNumber,0; set @AIDNumber,.@AIDNumber; }
  6. Remove; set $@tboxevent, rand(5); if ( $@tboxevent != 0 ){
  7. Did you replace all the files like this? izlude.gnd izlude.rsw izlude.gat
  8. set #questpoints,#questpoints+1; prontera,200,180,1 script Test 853,{ query_sql "SELECT `account_id`,`value` FROM `global_reg_value` WHERE `str` = '#questpoints' ORDER BY CAST(`value` AS UNSIGNED) DESC LIMIT 20",.@aid,.@var; for(set .@i,0;.@aid[.@i];set .@i,.@i+1) mes "AID:"+.@aid[.@i]+" | VALUES: ^FF0000"+.@var[.@i]+"^000000"; close; } }
  9. Use Thor Patcher, here's the link below. Link 1 Link 2
  10. Try to add this to your packet_db.txt for 2011-12-28aRagexeRE 0x08c9,2
  11. Set the prizes first. setarray .Package1[0],501,1,502,2,503,3; setarray .Package2[0],601,5,602,10; setarray .Package3[0],607,10; Talk to the npc then input the player name then select the package. After that; the player need to talk to the NPC to get the reward.
  12. No need to use mapcache, just patch it or replace. About old NPCs, you can check it all in trunk/npc folder.
  13. Try Item Rewards by Euphy; http://pastebin.com/raw.php?i=wTG07rbs
  14. Edit: - script poringwin -1,{ OnMobKilled: dispbottom "Poring : مبروك لقد نلت مني ^^"; set PORING,1; atcommand "@doommap"; killmonster "poring_w01","All"; mapannounce "poring_w01","Poring Catcher : تعال و قل لي أسمك",0; hideoffnpc "Poring Catcher#evnt2"; end; } To: - script poringwin -1,{ OnMobKilled: dispbottom "Poring : مبروك لقد نلت مني ^^"; set PORING,1; atcommand "@doommap"; killmonster "poring_w01","All"; mapannounce "poring_w01","Poring Catcher : تعال و قل لي أسمك",0; hideoffnpc "Poring Catcher#evnt2"; enablenpc "Poring Catcher#evnt2"; end; } You can also try this one; http://rathena.org/board/files/file/2742-poring-catcher/
  15. src/map/config/renewal.h /// game renewal server mode /// (disable by commenting the line) /// /// leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL << Comment /// renewal cast time /// (disable by commenting the line) /// /// leave this line to enable renewal casting time algorithms /// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats. /// example: /// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a /// "fixed cast time" which can only be reduced by specialist items and skills //#define RENEWAL_CAST << Comment /// renewal drop rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item drop rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied /// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table //#define RENEWAL_DROP << Comment /// renewal exp rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item exp rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied //#define RENEWAL_EXP << Comment /// renewal cast time variable cast requirement /// /// this is the value required for no variable cast-time with stats. /// formula: (DEX * 2) + INT /// default: 530 #define RENEWAL_CAST_VMIN 530
  16. announce "["+strcharinfo(0)+"] : "+.Message$,0,0xB1FB17;
  17. db/cash_shop_db2.txt // This file contains the items sold in the ingame cash shop // // The structure of the file is // type, item ID, price // // type: // 0: New // 1: Hot // 2: Limited // 3: Rental // 4: Gear // 5: Buff // 6: Heal // 7: Other // // price: // price of the defined item in cash points 0,2357,100
  18. Do you have savedata and System folder inside your kRO?
  19. I think you're looking for clydelion works. Check it here; http://clydelion.wordpress.com/2013/04/02/refine-specific-bonus/
×
×
  • Create New...