Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. disable renewal drop rate... src/config/renewal.h#L33
  2. probably you are using some pc bonus that doesnt exist or doesnt work here doc/item_bonus.txt
  3. did you do like this ? 4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ skill "LK_BERSERK",1; },{ callfunc "Sample"; },{} or just simply added the function ..hmm you need @reloaditemdb and have them to relog / re-equip the item to make the effect take place.
  4. @jemz hamada update your rAthena to latest
  5. by default your chatbox already show it...isnt ??
  6. conf/groups.conf commands: { storage: true duel: true leave: true invite: true time: true mobinfo: true whodrops: true noks: true // etc } list...doc/atcommands.txt
  7. @Shakto / others who have error. this is the updated sample script prontera,155,181,5 script Sample 100,{ mes "Battlegound"; if ( select ( "join/leave", "warp all bg members to you" ) == 1 ) if( getcharid(4) ){ bg_leave; dispbottom "Leave BG"; }else{ setbgid .bg_id; dispbottom "Joined BG"; } else if ( getcharid(4) == 0 ) dispbottom "you didn't join a battleground team"; else { getmapxy .@map$, .@x, .@y, 0; bg_warp .bg_id, .@map$, .@x, .@y; } close; OnInit: getmapxy .@map$, .@x, .@y, 1; .bg_id = createbgid( .@map$, .@x, .@y, "", "" ); end; } we cant assign battleground id when we create it because the server will auto generate one. current patch is tested and still working in rev 17532 .... beside, you can now simply add these source mod with this 2 file. src/custom/script.inc and src/custom/script_def.inc should be no problem for newbie to add these source mod now.
  8. if (select("Enter PVP. ["+getmapusers(""+$@lista$+"") +"]:I'm out of potions today.") == 1) { warp ""+$@lista$+"",0,0; end; } change to if (select("Enter PVP. ["+getmapusers( $@lista$ ) +"]:I'm out of potions today.") == 1) { warp $@lista$,0,0; announce strcharinfo(0)+" entered "+$@lista$,0; end; }
  9. 501,Red_Potion,Red Potion,11,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; doevent "Shopper::OnTalk"; },{},{}
  10. item type change to 11
  11. - script Shopper 757,{ OnTalk: // <---- ADD THIS or another other label name you want. 501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; doevent "Shopper::OnTalk"; },{},{}
  12. 7146,.............,{ doevent "npcname::label"; },{},{} change it to consumable item.
  13. just hit the + button at the corner of your chatwindow...
  14. Emistry

    BAR of mob

    just pick any configuration you want .... start learning by trial and error .. swt
  15. Emistry

    Dispell

    by default you wont be able to target them in pvp or gvg area...
  16. Emistry

    BAR of mob

    2010 client you can get it here http://rathena.sourceforge.net/tools/diff_patcher.php?client=2010-07-30aRagexeRE
  17. try change all label into lowercases... Onreddead Onredquit Onbluedead Onbluequit
  18. if not mistaken..it's not database problem..but the item part for flux cp has broken long ago ~
  19. conf/battle/party.conf#L58 // Display party name regardless if player is in a guild. // Official servers do not display party name unless the user is in a guild. (Note 1) display_party_name: no
  20. Emistry

    BAR of mob

    use old client .....else...source mod ......to remove monster HP bar and enable the HP display setting mentioned by Sunzuke
  21. try use the dota pvp made by Annieruru .... i never had any problem with it .... been using it for years .... the original topic at old eathena forum ... you can still get it by searching both rathena / eathena forum or google.
  22. yellow = information ... where to add / how many line added / how many line removed. green = line added ... new line added into the script at specific lines red = line removed .... removed line. basically you can just refer the "first symbol" infront each line... + mean "ADD" - mean "REMOVE"
  23. if( countitem( .Runes[ .@Runes ] ) < 10 ){ you have to add in the array variable ... otherwise you are just checking "index" number..
×
×
  • Create New...