Jump to content

Jaburak

Members
  • Posts

    1125
  • Joined

  • Days Won

    31

Everything posted by Jaburak

  1. It's just a sprite problem.
  2. http://lmgtfy.com/?q=how+to+install+ipboard
  3. npc/custom
  4. http://www.eathena.ws/board/index.php?showtopic=268497
  5. This will fix the issue. Find: mes "Cost : ^777777"+ValueConvert( .cost[@style] )+" "+.currency_name$[@style]+"^000000"; Add below: close; -- Find: }while( @select != 4 && @select != 255 ); deltimer strnpcinfo(0)+"::OnPCLogoutEvent"; @select = 0; close; Remove: close;
  6. I didnt test it but like what he reply to your post;
  7. That's not mine, I said; case AS_SONICBLOW: if(sd && pc_checkskill(sd,AS_SONICACCEL)>0) hitrate += hitrate * 20 / 40; break;
  8. For double strafe: case AC_DOUBLE: case MA_DOUBLE: skillratio += 4*(skill_lv-1); Sonic Blow: case AS_SONICBLOW: if(sd && pc_checkskill(sd,AS_SONICACCEL)>0) hitrate += hitrate * 20 / 40; break;
  9. For double strafe: case AC_DOUBLE: case MA_DOUBLE: skillratio += 5*(skill_lv-1); Sonic Blow: case AS_SONICBLOW: if(sd && pc_checkskill(sd,AS_SONICACCEL)>0) hitrate += hitrate * 25 / 50; break;
  10. I think this is not possible; I suggest you to have a script which gives limited account per IP.
  11. Maybe your client doesn't read LUA/LUB files.
  12. Find: case AS_SONICBLOW: if(sd && pc_checkskill(sd,AS_SONICACCEL)>0) hitrate += hitrate * 50 / 100; break; Replace: case AS_SONICBLOW: if(sd && pc_checkskill(sd,AS_SONICACCEL)>0) hitrate += hitrate * 40 / 80; break; Try this.
  13. What client are you using?
  14. Try this; trunk/src/map/battle.c Find: case AC_DOUBLE: case MA_DOUBLE: skillratio += 10*(skill_lv-1); Change the 10* to decrease. For example; case AC_DOUBLE: case MA_DOUBLE: skillratio += 8*(skill_lv-1);
  15. A very simple Hot Castle Event script. You can select what agit or castle do you want for the event. setarray .@maps$[0],"prtg_cas01","prtg_cas02","prtg_cas03","prtg_cas04","prtg_cas05","aldeg_cas01","aldeg_cas02","aldeg_cas03","aldeg_cas04","aldeg_cas05","gefg_cas01","gefg_cas02","gefg_cas03","gefg_cas04","gefg_cas05","payg_cas01","payg_cas02","payg_cas03","payg_cas04","payg_cas05","arug_cas01","arug_cas02","arug_cas03","arug_cas04","arug_cas05","schg_cas01","schg_cas02","schg_cas03","schg_cas04","schg_cas05"; Edit the price. getitem 504,10; // Set your price getitem 505,10; // Set your price Hot Agit Event.txt
  16. trunk/conf/groups.conf For example; I will add @go command. Find: groups: ( { id: 0 /* group 0 is the default group for every new account */ name: "Player" level: 0 inherit: ( /*empty list*/ ) commands: { /* no commands by default */ } Lines will become: groups: ( { id: 0 /* group 0 is the default group for every new account */ name: "Player" level: 0 inherit: ( /*empty list*/ ) commands: { /* no commands by default */ go: true }
  17. prontera.gat,150,150,5 script Test 899,{ mes "Do you want to trade your Gold Coin to TCG??"; menu "Yes!",-,"No!",Lno; mes "[Credits Exchanger]"; mes "How many Gold Coin do you want to exchange?"; next; menu "1000 Gold Coin",L1000, "2000 Gold Coin",L2000, "3000 Gold Coin",L3000, "Quit",Lcancel; Lcancel: close; Lno: close; L1000: mes "This is equal to ^0088001000 TCG^000000 :"; next; if(countitem(671) < 1000) goto Lcantmake; delitem 671,1000; mes "Checking..."; next; mes "Thanks a lot!"; getitem 7227,1000; close; L2000: mes "This is equal to ^0088001000 TCG^000000 :"; next; if(countitem(671) < 2000) goto Lcantmake; delitem 671,2000; mes "Checking..."; next; mes "Thanks a lot!"; getitem 7227,1500; close; L3000: mes "This is equal to ^0088001000 TCG^000000 :"; next; if(countitem(671) < 3000) goto Lcantmake; delitem 671,3000; mes "Checking..."; next; mes "Thanks a lot!"; getitem 7227,2000; close; Lcantmake: mes "You need more Gold Coins"; close; }
  18. I think that idea needs a client hexing. But I'll try.
  19. Did you uncomment all novice castle files here? trunk/npc/scripts_athena.conf // --------------------------- Events --------------------------- // - Novice WoE ------------------------------------------------- // Novice WoE is a kRO Event, after the event, the scripts were disabled. // Novice Castles don't have real dungeons. They're connected to the common ones. // So it's better not to uncomment this line. //npc: npc/events/nguild/nguild_dunsw.txt //npc: npc/events/nguild/nguild_treas.txt //npc: npc/events/nguild/nguild_guardians.txt //npc: npc/events/nguild/nguild_warper.txt //npc: npc/events/nguild/nguild_ev_agit.txt //npc: npc/events/nguild/nguild_flags.txt //npc: npc/events/nguild/nguild_managers.txt //npc: npc/events/nguild/nguild_kafras.txt
  20. if(@map$ == "yourmap1" || @map$ == "yourmap2" || @map$ == "yourmap3") {
  21. File Name: [rAthena] & [eAthena] nopub.patch File Submitter: Anakid File Submitted: 01 Jun 2013 File Category: Source Modifications Content Author: Anakid This mod hides the chat boards ingame. Tested/Compatible with rAthena SVN r17324 and eAthena SVN. Idea Credited To: http://rathena.org/board/topic/80276-novendingboards-novenders/ Click here to download this file
  22. You should apply your custom script here trunk/npc/scripts_custom.conf then restart your server.
  23. Recompile your server.
×
×
  • Create New...