Jump to content

Start_

Members
  • Posts

    950
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Start_

  1. Do you want to trade & created chat room while dead right? I think it's restricted on src just find the code and try remove some of it.
  2. Loop members in party then use achievementupdate? (\doc\script_commands.txt last lines.)
  3. Start_

    Mob One Tap

    Do you use this in special events? If so just made npc that use mob sprites and made it movable, Then when players tap it call function to kill player. Otherwise I think rAthena had some special skill that one hit kill (I can't remember the name).
  4. nude; atcommand "@dropall"; atcommand "@clearinventory"; atcommand "@job 0"; atcommand "@lvup -999"; atcommand "@joblvup -999"; atcommand "@reset"; StatusPoint = 48; SkillPoint = 0; Zeny = 0; I always use this lines of code.
  5. If you want to force players to cap % > Use bindatcommand to trigger autoloot again and don't allow player to use normal autoloot.
  6. Client folders > data > msgstringtable.txt and find the word.
  7. mes "ID"; input .@inputId$; next; mes "Old PW"; input .@inputPw$; next; query_sql ("SELECT `account_id` FROM `login` WHERE `userid`='"+.@inputId$+"' AND `user_pass`='"+.@inputPw$+"'", .@sum); if(.@sum<=0){ mes "Incorrect ID or PW"; close; } next; mes "New PW"; input .@inputPw$; if(.@inputPw$!=""){ query_sql "UPDATE `login` SET `user_pass` = '"+.@inputPw$+"' WHERE `userid` = '"+.@inputId$+"'"; mes "Done"; close; } mes "Canceled"; end; This is simple password change scripts. you can adapt it.
  8. Try Kamishi's 34 color packs.
  9. Any errors? Please provide more detail. Client Date, Server Mode, etc..
  10. Do you mean official achievements right? If so you need to do custom achievements and handle it by achievementadd, achievementcomplete function. If not you can custom in many ways like bring 50 players skull, OnPCDieEvent:, etc...
  11. bonus2 bExpAddClass,Class_All,-100000; (Not sure but you can try) Or use mapflag noexp
  12. Me and my friends doing checking missing/wrong items at free time. I had doing about 2-3 PR previously. Currently PR: https://github.com/rathena/rathena/pull/4877 If you are know something is not same as kRO you can do and send PR to rAthena too.
  13. I have no clue to solve your problems. By the way please do not spam.
  14. Just do it like this. It's will had some overlap but leave it be.
  15. Use this: And for pvp things just wait for Mael further update.
  16. Use hateffect in item scripts. { hateffect HAT_EF_FLUTTER_BUTTERFLY,true; },{},{ hateffect HAT_EF_FLUTTER_BUTTERFLY,false; } See 5914,Earmuff_Flowerform,C Flutter Butterfly
  17. mes "Congratulation! Here is your Reward."; announce strcharinfo(0) + " Finish a quest",bc_all;
  18. change getmapxy .@map$, .@x, .@y, 0; to getmapxy(.@map$,.@x,.@y);
  19. OnPCStatsCalculate are no longer existed now.
  20. Instead of made players die just warp them out.
  21. I think there are error in your scripts and try to use callfunc instead. 1.) Somewhere in any npc files function script WakeFieldBox01,{ // +9 Crimson Dagger [2] setarray .@OptID[0],RDMOPT_WEAPON_ATTR_TELEKINESIS; setarray .@OptVal[0],0; setarray .@OptParam[0],0; getitembound3 28705,1,1,9,0,0,0,0,0,BOUND_CHAR,.@OptID,.@OptVal,.@OptParam; return; } 2.) in item script: callfunc("WakeFieldBox01");
  22. You can use select commands. for (.@i = 0; .@i < getarraysize(.menus); .@i++){ if(unlocked[.@i]){ .@menu$ += "- Color"; }else{ .@menu$ += "- No Color"; } } .@select_menu = select(.@menu$);
  23. https://portforward.com/d-link/dir-850l/ Follow this pages. If still error when starting server. Please post an images.
×
×
  • Create New...