Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. yes
  2. - script Sample#bonusdmg -1,{ OnPCStatCalcEvent: if ( BaseLevel < 255 ) end; switch( Class ) { case Job_Rune_Knight_T: bonus2 bSkillAtk,"LK_SPIRALPIERCE",10; break; case Job_Minstrel: bonus2 bSkillAtk,"CG_ARROWVULCAN",10; break; default: break; } end; } you can try something like this.
  3. conf/db/re/mob_db.txt
  4. this is a wrong approach to compare your server damage to other private server. you have no idea what have been edited to control the damages. you have no idea what kind of settings is used. you have no idea what database has changed. if you want to compare the damage, follow the official server.
  5. the few error above refer to CASE-SENSITIVE issue. bMAtkRate ---> bMatkRate same goes for others. and eliminate item that using same aegis name. the warning given are pretty self-explained, you should take a look closely on the warning on which part having issue and what issue is it.
  6. OnNPCKillEvent: if ( rand( 2 ) ) { .@item_id = F_Rand( 501,502,503,504,505 ); getitem .@item_id,1; } end;
  7. 2013 summer fishing illust , thank, but I already have it xD looking for 2014 version haha. ( the one i show in above picture ? ) EDIT: my bad. thank you, found the picture inside it too xD
  8. try this ? https://subversion.assembla.com/svn/client-side-translation/System/itemInfo.lua
  9. Anyone can help me extract the Fishing Illustration file ? I believe it's in the IRO data.grf If you have any other similar version, can you share with me too ?? I am looking for complete set for each illust file. Probably 6 files for each season ?? Original Link: http://forums.warpportal.com/index.php?/topic/160679-917-fishing-quest-guide-wip-updated-924/
  10. tried edit the configuration here ?? conf/battle/party.conf#L58
  11. it's either you have edited your script, or you post a wrong version of script. you're absolutely posting a different script if compare both from the codebox and the screenshot.
  12. 1. the current script,it wont display how many point you get since I didnt add any message for it. You can add the message yourself if you want it. 2. the npc only will give player gold if the player have point with them. 3. the point will be removed when they died in the map or relog. 4. I have no idea what you try to show/inform us from the screenshot that you posted.
  13. C:/<Your kRO Folder>/System/ItemInfo.lub the absolute file path should be like this, depend on your kro folder location. if it's missing then grab it here. https://subversion.assembla.com/svn/client-side-translation/System/itemInfo.lua
  14. http://rathena.org/board/topic/72715-unofficial-extra-status-icons/
  15. your fix. ....."Collect Tax - "+$Guild_Tax+" zeny":"" ) == 1 ) { * You should upload your edited script, not the original script since the error come from your own mistake during the edits.
  16. you only capable to view your opponent team bg logo ( sword-clash-like logo )
  17. attachrid( .@aid[.@j] ); #CASHPOINTS += 100;
  18. i think you should be able to fix it by updating your kro client to latest
  19. you mean your player didnt get the rental item ?? switch(rand(15)){ // <-- you use 15 ... but you only have 3 cases. ( 0-2 ) change to switch(rand(3)){ or add a default case.
  20. addtimer 1, strnpcinfo(0)+"::Onquit"; change to addtimer 1, strnpcinfo(3)+"::Onquit"; or NPC change to Head Gear Shop N Dont use ::blablablaa
  21. something like this ? guild_vs5 mapflag nogo guild_vs5 mapflag nowarp guild_vs5,0,0,0,0 monster Poring 1001,100,0,0,"Sample#goldroom#OnKill" prontera,155,181,5 script Sample#goldroom 757,{ if ( @TEMP_CASHPOINTS ) { if ( select( "Exchange "+@TEMP_CASHPOINTS+" Point into Gold","Continue" ) == 1) { getitem 969,@TEMP_CASHPOINTS; @TEMP_CASHPOINTS = 0; } } mes "Entrance Fee:"; mes "200,000 zeny"; if ( Zeny >= 200000 ) if ( select( "okay","Cancel" ) == 1 ) { Zeny -= 200000; warp "guild_vs5",0,0; } close; OnKill: @TEMP_CASHPOINTS += rand( 1,5 ); end; OnPCDieEvent: if ( strcharinfo(3) == "guild_vs5" ) @TEMP_CASHPOINTS = 0; end; } ** cant access upaste.me .. >.< my university blocked it
  22. disable renewal settings. src/config/renewal.h
  23. if you patch new files directly into a secured GRF, these files will not be secured. You have to upload a whole new secured GRF and let them re-download the whole GRF.
  24. sc_end <status id>; sc_end <status id>; sc_end <status id>; warp "pvpmap",0,0;
×
×
  • Create New...