Jump to content

Angelmelody

Members
  • Content Count

    772
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by Angelmelody

  1. add more stats return 7:cri 8:aspd 9:base atk 10: equip atk 11:matk(left side) 12:matk(right side) 13:def 14:def2 15:mdef 16:mdef2 17:hit 18:flee 19:flee2 20:def element
  2. I don't think so, readparam only return player's base stats
  3. This script command will return player's battle stats. What is battle stats? base stats + bonus stats = battle stats CMD to use getbattlestats(type{,<aid>}); type value : 1:STR 2:AGI 3:VIT 4:INT 5:DEX 6:LUK 7:cri 8:aspd 9:base atk 10: equip atk 11:matk(left side) 12:matk(right side) 13:def 14:def2 15:mdef 16:mdef2 17:hit 18:flee 19:flee2 20:def element example: prontera,157,181,6 script gbs 106,{ mes "type1: "+getbattlestats(1); mes "type2: "+getbattlestats(2); mes "type3: "+getbattlestats(3); mes "type4: "+getbattlestats(4); mes "type5: "+getbattlestats(5); mes "type6: "+getbattlestats(6); mes "type7: "+(getbattlestats(7)/10); mes "type8: "+getbattlestats(8); mes "type9: "+getbattlestats(9); mes "type10: "+getbattlestats(10); mes "type11: "+getbattlestats(11); mes "type12: "+getbattlestats(12); mes "type13: "+getbattlestats(13); mes "type14: "+getbattlestats(14); mes "type15: "+getbattlestats(15); mes "type16: "+getbattlestats(16); mes "type17: "+getbattlestats(17); mes "type18: "+getbattlestats(18); mes "type19: "+(getbattlestats(19)/10); mes "type20: "+getbattlestats(20); close;} Download: getbattlestats.c
  4. 2013-12-23c Ragexe Client didn't work with that Plug-In , some skill effects disappear (e.g. firewall....) ,but test with old client working fine
  5. fixed typo, try again /*create table itemperacc (`account_id` int(11) unsigned NOT NULL primary key) engine = innodb;*/- script dailyrewards -1,{OnPCLoginEvent: getmapxy .@map$, .@x, .@y, 0; if ( .@map$=="invek" ) { if ( !query_sql( "select account_id from `itemperacc` where account_id ="+ getcharid(3) , .@acc ) ) { set #CASHPOINTS, #CASHPOINTS + .@point_amt; dispbottom "Gained Daily Cash 25..."; dispbottom "Current Balance = "+#CASHPOINTS+" Cashpoints"; query_sql "insert into `itemperacc` values ( "+getcharid(3)+" )"; } } end;OnHour06: query_sql "truncate itemperacc"; end;}
  6. atcommand "@useskill 479 5 " +strcharinfo(0); doesnt work as FCP , it only protect 1/4
  7. try this /*create table itemperacc (`account_id` int(11) unsigned NOT NULL primary key) engine = innodb;*/- script dailyrewards -1,{OnPCLoginEvent: getmapxy .@map$, .@x, .@y, 0; if ( .@map$=="invek" ) { if ( !query_sql( "select account_id from `itemperacc` where account_id ="+ getcharid(3) , .@acc ) ) { set #CASHPOINTS, #CASHPOINTS + .@point_amt; dispbottom "Gained Daily Cash 25..."; dispbottom "Current Balance = "+#CASHPOINTS+" Cashpoints"; query_sql "insert into `itemperacc` values ( "+getcharid(3)+" )"; } } end;OnHour06: query_sql "truncate itemperacc"; end;}
  8. change .*sbuffme(s.*)? to .*buffme.* , it should work (tested) prontera,162,184,4 script Heall 4_PORING,{specialeffect2 EF_HEAL2; percentheal 100,100;getitem 7139,1; // Get the Glistering Coat needed to cast FCPatcommand "@useskill 479 5 " +strcharinfo(0); // Full chemical protection lvl 5close;buffPlayer:specialeffect2 EF_HEAL2; percentheal 100,100;skilleffect 479,0;sc_start SC_PROTECTWEAPON,600000,5;sc_start SC_PROTECTARMOR,600000,5;sc_start SC_PROTECTHELM,600000,5; sc_start SC_PROTECTSHIELD,600000,5; end;OnInit: defpattern 1, "([^:]+):.*buffme.*", "buffPlayer"; activatepset 1; end;}
  9. All issues have been fixed , Everything Is Working Perfectly with r14
  10. if you use wrong file name csutin ,script wont show any image in your winddow,AFAIK those file names were fishing_01 ~ fishing_10 not cutin001~cutin004
  11. I've updated to r10 , but I can't convert conf to txt any more Sorry for keep bothering you Sorry for delay, I updated the script, run the conf2db.lua and just enable the logs(new option @r13) and send me item_db_conversion.log test with English conf works perfectly, but test with Chinese characters conf got errors here is log file item_db_conversion.7z
  12. Maybe you havn't put those bmp files into client side?<br />
  13. I don't think there's a need to increase over 65K , 65K space is large enough for general use , over it is too crazy
  14. try this - script Only4perIP -1,{OnPCLoginEvent:if( query_sql("SELECT name FROM `char` LEFT JOIN login ON `char`.account_id = `login`.account_id WHERE `login`.last_ip='"+getcharip()+"' AND `char`.online=1 AND `char`.char_id!="+getcharid(0)+" AND `char`.account_id NOT IN (SELECT account_id FROM `autotrade_merchants`)",.@name$) >4 ) { announce "Sorry, only 4 accounts per IP can be logged in at a time.", bc_self; sleep 1000; atcommand "@kick "+strcharinfo(0);}end;}
  15. In official server, some mobs have blue light effect and I found that effect may be a configuration in systemmonster_size_effect.lub I tried setting mob Poring with EFFECT.EF_BLUELIGHTBODY ,it seems not working with that blue effect but Mostersize was working as my intended [1002] = {MonsterSize = 4, MonsterEff = EFFECT.EF_BLUELIGHTBODY}, Who know how to enable that blue effect?
  16. from here https://github.com/rathena/rathena/commit/40f7014
  17. I've updated to r10 , but I can't convert conf to txt any more Sorry for keep bothering you
  18. I use the same patcher as Mhalicot said
  19. Could you give me a real-work-running client sample? I don't know where I do wrong? Could you give me a real-work-running client sample? I don't know where I do wrong? http://1drv.ms/1k4YBAp(run with Launcher 、read data folder first )
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.