Jump to content

LearningRO

Members
  • Posts

    778
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by LearningRO

  1. why i can't see all the images?
  2. not available in this moment ?
  3. how about if i use debian?
  4. i think you missing file transparentitem.lub
  5. try to show your script in here and maybe someone can help you its live server? maybe someone try to use WPE
  6. hi, all client 2018 have control transparent item for garment transparentItemlist = { { 1, 255, 255, 25500 }, what i want how to disable front side transparent in garment i don't know what the function number in above configuration see this picture if i put on garment have front side transparent https://gyazo.com/9ac02d5429f0b1850e58a48a030fdca9 and if i put on middle/lower/upper location didn't have transparent https://gyazo.com/d37c069825097d3cdad489250302b9f8
  7. rathena support that client? i guess rathena only support at 20180621a its stable client? did u use on live server?
  8. Hi, all it's possible to enable Effect item digital space on this client? https://user-images.githubusercontent.com/35770095/56074523-9b3b7a00-5dde-11e9-9714-de9b6256246e.png
  9. and who is use that command the party leader? really nice ? i'll try it
  10. can you add feature Player Online status?
  11. okay sorry for my missunderstanding about encrypt GRF ? Thanks tokei for your explained I hope you can update your tools when grf already encrypt and use merge tools must input the password encrypt ? its just sugestion ?
  12. use Gepard and then have ANDRO its not safe LOL
  13. Hi, All i try to use new feature pet evolution but i have probelm with autofeed for GM account we can use that feature but on normal account didn't get that feature? how to enable it for normal player ?
  14. LearningRO

    @item2

    if you wanna learn to make script you can learn it in docs/script_commands.txt https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L4601
  15. for basic package you only need pay 150$ with tax for change currency form EUR to USD maybe 155$
  16. Thanks annie ill try it, and give the feedback
  17. ill waiting for this ?
  18. change this: getmapxy .@map$,.@x,.@y,0; to : getmapxy .@map$,.@x,.@y;
  19. somebody can help to change this script to use unique_id This is the part for config how to setting reward options // ----------------------------------------------------------- // Reward options. // ----------------------------------------------------------- // [1] Enable rewards. // [2] Mail all rewards. // - If not set, players receive items in their inventory. // - Only ONE item can be sent via mail, plus Zeny. // - Note that offline players do NOT receive rewards. // [4] Only reward Guild Masters. // - If not set, all guild members are rewarded. // - If mailing is enabled (option 2), offline Guild Masters WILL receive rewards. // [8] Duplicate IP check. // - Members in a guild with the same IP address are not rewarded. // - If Guild Masters is enabled (option 4), this feature is not used. // ----------------------------------------------------------- // Combine values as needed (e.g. 1|8 = 1+8 = 9). set .Options, 1|8; // Rewards per castle. // -- when given directly: <itemID>,<amount>{,<itemID>,<amount>,...} // -- via mail (option 2): <itemID>,<amount>,<Zeny> setarray .Reward[0],31509,1,12103,1,16770,1,6380,15,31510,1; This is the part for give the reward : OnReward: set .@sql$, ((.Options&4)?"position = 0":"online = 1"); if (.Options&2) set .@str$,gettimestr("%B %d, %Y",21); freeloop(1); for(set .@i,0; .@i<30; set .@i,.@i+1) if (getarg(0)&(1<<.@i)) { set .@gid, getcastledata(.Castles$[.@i],1); if (!.@gid) continue; set .@size, query_sql("SELECT account_id,char_id FROM `guild_member` WHERE guild_id = '"+.@gid+"' AND "+.@sql$,.@aid,.@cid); for(set .@j,0; .@j<.@size; set .@j,.@j+1) { if ((.Options&8) && !(.Options&4)) { set .@ip$, replacestr(getcharip(.@aid[.@j]),".","a"); if (getd(".@ip_"+.@i+"_"+.@ip$)) continue; setd ".@ip_"+.@i+"_"+.@ip$,1; } if (.Options&2) { query_sql("INSERT INTO `mail` (send_name,dest_id,title,message,nameid,amount,identify,zeny,time) VALUES ("+ "'no-reply',"+.@cid[.@j]+",'** Siege Reward: "+getcastlename(.Castles$[.@i])+" **',"+ "'Brave one,% % Congratulations!% Your guild has successfully occupied% territory in the War of Emperium on% "+.@str$+".% % % % % [ Your reward is attached. ]',"+ .Reward[0]+","+.Reward[1]+",0,"+.Reward[2]+",UNIX_TIMESTAMP(NOW()))"); if (!getd(".@str_"+.@cid[.@j]) && isloggedin(.@aid[.@j],.@cid[.@j])) { setd ".@str_"+.@cid[.@j],1; message rid2name(.@aid[.@j]),"You've got mail! Please re-login to update your mailing list."; } } else if (isloggedin(.@aid[.@j])) { for(set .@k,0; .@k<getarraysize(.Reward); set .@k,.@k+2) getitem .Reward[.@k], .Reward[.@k+1], .@aid[.@j]; message rid2name(.@aid[.@j]),"You have been rewarded for conquering "+getcastlename(.Castles$[.@i])+"."; } } } if (.Options&2) query_sql("UPDATE `mail` SET message = REPLACE(message,'%',CHAR(13)) WHERE send_name = 'no-reply'"); return; this script form woe_controller.txt thanks
  20. u can mak restrict via script if (getpetinfo(PET_CLASS)){ mes "You Can't enter this map with your pet!"; mes "Pet Not Allowed at here!"; close; }
  21. Hi, all i see description skill for Shatter Storm its should break random equip but when see the formula skill only break headgear case RL_S_STORM: //kRO update 2014-02-12. Break a headgear by minimum chance 5%/10%/15%/20%/25% skill_break_equip(src, bl, EQP_HEAD_TOP, max(skill_lv * 500, (sstatus->dex * skill_lv * 10) - (tstatus->agi * 20)), BCT_ENEMY); //! TODO: Figure out break chance formula How to update the formula to break random equipment ? somebody can help me?
  22. but if i don't run your aplication it will not checking edited dll right? its really cool if you can combine with thor patcher so when running the patcher, thor patcher will read frist to check the files hash, like thor patcher read hash for client.exe
×
×
  • Create New...