Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. please make sure you gave a "INFORMATIVE" topic title next time ... and this is client issue ...cant be control using script. moved this topic to client area.
  2. if( Zeny < 20000000 ){ mes "You need 20,000,000 zeny."; close; } set Zeny,Zeny - 20000000;
  3. rentitem <itemid>,( 15 * 24 * 3600 ); refer rentitem
  4. there are better version of ranking script...made by brian using SQL ...search the forum
  5. buy a webhost with domain www.testragnarok.com then setup your flux cp there...
  6. refer this line src/config/renewal.h#L7 //quick option to disable all renewal option, used by ./configure //#define PRERE if it's commented...then you are using RENEWAL.....else....PRE-RENEWAL
  7. for monster "changing" into another monster..you can just simply duplicate this <mob id>,<name>@NPC_METAMORPHOSIS,idle,193,1,10,2000,5000,no,self,always,0,<new mob id>,,,,,, for 2 monster move together and cast this...no idea how to do it.
  8. you can do like this http://upaste.me/r/6dac68 itemID,............,{ callfunc( "scroll_usage_log",<itemID> ); },{},{}
  9. - script Sample -1,{ OnPCKillEvent: soundeffect "1234567890123456789.wav", 0; // this will play the soundeffect end; }
  10. edit the refine rate here db/re/refine_db.txt
  11. disabled this and you are good to go. /// leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL
  12. OnPCLoginEvent: if( !getgmlevel() && compare( strcharinfo(0),"GM " ) ){ mes "You cant use 'GM' in your name."; sleep2 3000; atcommand "@ban "+strcharinfo(0); } end; try this
  13. you can try this https://rathena.org/board/index.php?/files/file/2504-%7B?%7D/ or @Euphy's quest shop ~
  14. increase the effect of doppelganger card. db/re/item_db.txt#L2124 4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,100; },{},{} increase attack speed by 100% .. or any value you want..
  15. you can try this https://rathena.org/board/index.php?/files/file/2496-%7B?%7D/
  16. change to sc_start sc_start SC_FIREWEAPON,300000,1; SC_FIREWEAPON 96 SC_WATERWEAPON 97 SC_WINDWEAPON 98 SC_EARTHWEAPON 99
  17. i dont think we have "current_map" ?? sql-files/main.sql#L110
  18. Emistry

    droprate

    100 = 1x 1000 = 10x 10000 = 100x 100000 = 1000x 0.01 x (1x) = 0.01% 0.01 x (10x) = 0.10% 0.01 x (100x) = 1.00% 0.01 x (1000x) = 10.00% 0.01 x (10000x) = 100.00%
  19. Custom_Items Loc: Equipment location of armor and arrow-type items. Values below can be combined, i. e. 136 would indicate both accessory slots (typical value for accessories). (2^0) 1 = Lower headgear (2^1) 2 = Right hand (2^2) 4 = Mantle (2^3) 8 = Accessory 1 (2^4) 16 = Armor (2^5) 32 = Left hand (2^6) 64 = Shoes (2^7) 128 = Accessory 2 (2^8) 256 = Upper headgear (2^9) 512 = Middle headgear (2^10) 1024 = Styles Upper headgear (2^11) 2048 = Styles Middle headgear (2^12) 4096 = Styles Lower headgear (2^15) 32768 = Arrow (arrow-type items only)
  20. you mean you unable to check for the quest status ?? add this before check if the quest is finished. if( checkquest( 5005,HUNTING ) != 2 ){ mes "Please kill all 100 Dunyerr"; close; }
  21. you can download rathena as ZIP from the GIT site. https://github.com/rathena/rathena/archive/master.zip but you have to compile it yourself.
  22. try this http://upaste.me/r/1efb51 // 607,..........,{ callfunc( "Sample",607,2,4060 ); percentheal 100,100; },{},{}
  23. you can try this http://upaste.me/r/3a5183 you can consider to use "temporary" variable if your delay is short ... change all ITEMDELAY_ to @ITEMDELAY_
×
×
  • Create New...