Jump to content

crazyarashi

Developer
  • Posts

    763
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by crazyarashi

  1. what is your problem by the way it doesnt show in skill bar? / unlearnable
  2. did you add it in your iteminfo.lua/lub? :))
  3. if the skills is not showing up on skill tab = use zackdreavers latest translation files else if it's unlearnable try getting latest rA
  4. use zackdreavers translation files to show it in skill tab. it is already added by default in rA database Note: This requires 2016-12-28 onwards based on my testing :))
  5. 2017-06-14 is good enough to use :)) but note 2017 client are not fully stable unlike the 2015 clients :))
  6. by timer do you mean cooldown? or the time inside the instance :))
  7. I believe you havent recompiled.
  8. 1. cd rathena //cd foldername 2. make clean 3. ./configure //Note : ./configure --disable-64bit <-- use it when youre running in 32-bit 4. make server
  9. may i ask what OS are you using :)) try make server
  10. OnInit: waitingroom "Warper",0; end; } Add this to the waiting room :))
  11. It's probably not a script you can just add every MVP/or other monsters as a pet then decide a universal item for catching every each one of them :)) Adding Custom Pets
  12. set .@amounts, countitem(.itemcoll); if ( .@amounts!= .itemquan) {mes "the quantity item not enough.";} // input .@itemcoll; // changed to npc variable set .itemcoll,.@itemcoll; next; input .@itemquan; set .itemquan,.@itemquan; next; mes "Please input what the reward item."; input .@itemrew; set .itemrew,.@itemrew; next; mes "Please input how many item reward."; input .@itemrewq; set .itemrewq,.@itemrewq; OnInit: //For dummy data set .itemcoll,771; //ID Maybe? set .itemquan,1; set .itemrew,1; set .itemrewq,2;
  13. Packet Obfuscation can protect your serv from some 3rd party program like WPE/RPE
  14. i don't really suggest disabling it since it's very useful. you can just rediff you current client and just dont disable the packet obfuscation(if youre planning to live your server). or if youre just testing and stuffs disabling it wont hurt :))
  15. You diffed your client to disable packet obfuscation :)) but the packet obfuscation on server side is activated..
  16. Both is suitable for hosting both have ups and downs if you have a bit of knowledge in linux it's more good to use Linux, but if you don't have any knowledge on linux it's easier to use windows but.. Windows is more pricy than linux and it uses more ram and cpu compare to linux. :))
  17. //Item Combo DB 13027:15044,{ .@r = max(getequiprefinerycnt(EQI_ARMOR),1); bonus3 bAddMonsterDropItem,929,RC_DemiHuman,70*.@r; bonus3 bAddMonsterDropItem,970,RC_DemiHuman,50*.@r; bonus3 bAddMonsterDropItem,929,RC_Player,70*.@r; bonus3 bAddMonsterDropItem,970,RC_Player,50*.@r; bonus3 bAddMonsterDropItem,929,RC_Brute,70*.@r; bonus3 bAddMonsterDropItem,970,RC_Brute,50*.@r; } bonus3 bAddMonsterDropItem,929,RC_DemiHuman,70*.@r; // just edit the id drops to bonus3 bAddMonsterDropItem,929,RC_DemiHuman,100*.@r; //
  18. - shop TCG123 -1,501:10000 prontera,255,55,5 script TCG SHOP#TCG123 123,{ mes "I Sell Items For TCG!"; next; switch(select("Open Shop:Nothing")){ case 1: callshop "TCG123",1; npcshopattach "TCG123"; end; case 2: mes "Okay have a nice day"; close; } OnBuyItem: set .@TotalCost,0; for(set .@i,0; .@i < getarraysize( @bought_nameid ); set .@i,.@i+1) for(set .@j,0; .@j < getarraysize( .item ); set .@j,.@j+1) if( .item[.@j] == @bought_nameid[.@i] ) set .@TotalCost,.@TotalCost + ( .price[.@j] * @bought_quantity[.@i] ); if(countitem(.currency) >= .@TotalCost ){ delitem .currency,.@TotalCost; for(set .@i,0; .@i < getarraysize( @bought_nameid ); set .@i,.@i+1) getitem @bought_nameid[.@i],(@bought_quantity[.@i] * .amount[.@i]); end; } else { mes "Your "+getitemname(.currency)+" is not enough"; close; } OnInit: set .currency,7227; //set tax here setarray .item[0],607,608; setarray .price[0],2,1; setarray .amount[0],10,10; npcshopitem "TCG123",607,2; for(set .@i,0; .@i < getarraysize( .item ); set .@i,.@i+1) npcshopadditem "TCG123",.item[.@i],.price[.@i]; end; }
  19. if you define #define PRERE it will disable all renewal features :)) so yes its okay :))
  20. goto the file src/config/renewal.h and find this line //#define PRERE Change to #define PRERE //uncomment line
  21. check first if you disabled renewal drop :))
×
×
  • Create New...