Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. it should be db/const.txt SC_CP_WEAPON 72 SC_CP_SHIELD 73 SC_CP_ARMOR 74 SC_CP_HELM 75
  2. if( select( "Exchange Zeny to Cash","Cancel" ) == 1 ){ if( Zeny < 100000000 ){ mes "You need 100,000,000"; }else{ Zeny -= 100000000; #CASHPOINTS += 1000; mes "Done"; } } close;
  3. this ? npc/other/marriage.txt#L859 but weird...i didnt saw any divorce command ...
  4. probably you have somekind of npc that sell/give skillpoint ?
  5. you can get 2011 and 2012 client here http://supportmii.com/ro1/Clients/RagexeRE/ 2013 client required you to use some launcher program like "Rocred" , "Loki Launcher" ...etc... both also using different diffpatcher ...
  6. // Map for vending set .map$,"prontera"; setcell .map$,0,0,284,365,cell_novending,1; change the 284,365 to the MAX coordinate the payon can reach .... should the be coordinate at the very top right corner of payon ... // x and y horizone .. setarray .x_line,149,154,159; setarray .y_line,173,169,165,161,157; x and y coordinate that allow players to vending..
  7. prontera,155,181,5 script Sample 757,{ if( select( "YES","No" ) == 1 ){ if( divorce() == 1 ){ mes "Divorced."; }else{ mes "Failed"; } } close; } like this ?
  8. make sure your file's permission are set to enable read / write ...
  9. you can adjust the formula here.. npc/custom/quests/hunting_missions.txt#L154 set .@Mission_Points, 3+(.@j[.Quests]/.Quests/6);
  10. try this inside src/map/mob.c#L2575 find sd->mission_count = 0; add below pc_statusup2( sd,13,2 );
  11. asura damage reduction...tried this ? db/skill_damage_db.txt for mob HP / attack...edit this db/re/mob_db.txt refer this Custom_Mobs
  12. try this ? https://rathena.org/board/index.php?/files/file/2334-%7B?%7D/
  13. try these.. shutdown server..and load these SQL DELETE FROM `global_reg_value` WHERE `str` LIKE 'STATS_%'; DELETE FROM `global_reg_value` WHERE `str` LIKE 'STR_%'; DELETE FROM `global_reg_value` WHERE `str` LIKE 'AGI_%'; DELETE FROM `global_reg_value` WHERE `str` LIKE 'VIT_%'; DELETE FROM `global_reg_value` WHERE `str` LIKE 'INT_%'; DELETE FROM `global_reg_value` WHERE `str` LIKE 'DEX_%'; DELETE FROM `global_reg_value` WHERE `str` LIKE 'LUK_%'; make sure you backup 1st before do anything...
  14. you restart right after you created the guild ?? the database need time before it save the information.
  15. prontera,155,181,5 script Sample 757,{ set .@time,gettimetick(1); if( .@time > #reward_time ){ set #reward_time,( .@time + ( 3600 * 10 ) ); getitem 512,1; getitem 512,2; getitem 512,3; mes "Gained daily reward."; }else{ mes "You already get it."; } close; }
  16. should be set .@today,atoi( gettimestr( "%Y%m%d",21 ) );
  17. try http://upaste.me/r/241f9e
  18. for patskie script - script Sample -1,{ OnInit: set .guild_id, getcastledata("prtg_cas01", 1); end; OnPCLoadMapEvent: if ( strcharinfo(3) == "prtg_cas01" && .guild_id == getcharid(2) ){ sc_start SC_ASPDPOTION2,360000,0; sc_start SC_STRFood,360000,10; sc_start SC_AGIFood,360000,10; sc_start SC_VITFood,360000,10; sc_start SC_INTFood,360000,10; sc_start SC_DEXFood,360000,10; sc_start SC_LUKFood,360000,10; sc_start SC_HitFood,1200000,30; sc_start SC_FleeFood,1200000,30; sc_start SC_BATKFood,1200000,10; sc_start SC_MATKFood,120000,10; specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; // add all buffs here } end; } prtg_cas01 mapflag loadevent for chickz prontera.gat,150,184,5 script Healer#h1-1::Healer 834,{ skilleffect 34,0; sc_start SC_BLESSING,600000,10; sc_start SC_INCREASEAGI,600000,10; sc_start SC_ANGELUS,600000,10; sc_start SC_MAGNIFICAT,600000,5; sc_start SC_GLORIA,600000,5; sc_start SC_SUFFRAGIUM,600000,3; sc_end sc_curse; sc_end sc_silence; sc_end sc_confusion; sc_end sc_blind; sc_end sc_bleeding; sc_end sc_poison; sc_end sc_hallucination; sc_end sc_stripweapon; sc_end sc_striparmor; sc_end sc_striphelm; sc_end sc_stripshield; sc_end sc_orcish; percentheal 100,100; if (getcastledata( "prtg_cas01", 1) == getcharid(2) || getcastledata( "prtg_cas02", 1) == getcharid(2)){ sc_start SC_ASSUMPTIO,100000,5; sc_start SC_IMPOSITIO,600000,5; } end; }
  19. probably ....in your flux cp you have changed the "starting number" for each new registered account.
×
×
  • Create New...