Jump to content

yuchinin

Members
  • Posts

    120
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by yuchinin

  1. Type @mvp to spawn all mvp on the current map. @mvpkill to kill all mvp spawn with this command on the current map.
  2. He mean you could write a npc script that spawn all mvp on the map and bind it with bindatcmd, so you can just type @mvp bla bla to run the script.
  3. I just test the @Skorm method and it work properly.
  4. I did make a similar system before , maybe I will release it later
  5. Hi @crazyarashi, do you mean to spawn a non moving monster like barricade or plant? Or you want to be able to spawn any monster and disable it ability to move?
  6. View File Player Questing Board [NOTE] For now on I will keep release all of my work for free , I hope most people can enjoy my script without paid. But if you still want to support my work, please consider donate or become my patron. Thank you. It just a questing board which everyone can post request on it and let other to complete it for reward. Feature: Set a title for the request Set a requested Item or Zeny on the board (Or Both) Set a reward Item or Zeny on the request This script need my release of: Suggestion are welcome. Pending Script Upload: Todo list: //= 1. Change log from status to actual log and delete expired or completed request //= 2. Make it compatible with newest RANDOM OPTIONS Item //= 3. Add blacklist check //= 4. Add weight check By downloading this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script. Terms above may be changed or adjusted without prior notification. Copyright © - Yuchinin 2017 - All Rights Reserved Submitter yuchinin Submitted 07/25/2017 Category Utilities Content Author
  7. Version 1.0a

    661 downloads

    [NOTE] For now on I will keep release all of my work for free , I hope most people can enjoy my script without paid. But if you still want to support my work, please consider donate or become my patron. Thank you. It just a questing board which everyone can post request on it and let other to complete it for reward. Feature: Set a title for the request Set a requested Item or Zeny on the board (Or Both) Set a reward Item or Zeny on the request This script need my release of: Suggestion are welcome. Pending Script Upload: Todo list: //= 1. Change log from status to actual log and delete expired or completed request //= 2. Make it compatible with newest RANDOM OPTIONS Item //= 3. Add blacklist check //= 4. Add weight check By downloading this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script. Terms above may be changed or adjusted without prior notification. Copyright © - Yuchinin 2017 - All Rights Reserved
    Free
  8. On the last line, you should use rand(1,3) since rand(3) will get you 0,1,2. Also I check the getitem src, when getitem amount <=0 it will not give you the item.
  9. *mes "<string>"{,"<string>"{,...}}; mes did support multiple line. As the announce command, *announce "<text>",<flag>{,<fontColor>{,<fontType>{,<fontSize>{,<fontAlign>{,<fontY>}}}}}; it didn't support multiple line. You should always check https://github.com/rathena/rathena/blob/master/doc/script_commands.txt before start scripting.
  10. There is two way to add menu: 1. Use comma to separate each string 2. Add a ":" to separate each menu like select("Options A:Options B"), this is same as select("Options A","Options B")
  11. Sure it is open to be expand. But I will expand it when there is really need. In this fishing game, the "success rate" are mostly base on player not character in game, since the success rate are base on timing click. If you got good timing skill(I mean in real), plus some of the luck (your connection speed to server), you will get it fish on. Not mainly base on variable in game. The only one can make you more easily on fishing are different of rod and bait, you may set up different rod and bait with it's data into global database. *I will add the fishing rank ladder into todo list Actually now it can already set different Fish in different npc, if you need more spot just duplicate the npc and it will have same fish db but still have own instance. Here are some more info. Fish Global Database: (Add or change the fish database here to your like since these few are just some demotrate fish) Spot Setting: Different spot can have difference fish in it. Let say if you want to have a simple spot which have some easy catch fish, then just add the fish data to the Fish Global Database. (Example: "Bass|100|getitem|501:502:503") In this example when you fish on Bass, the bass has speed of 100 which will determine the indicator speed. This fish mode is [getitem] so it will give you one of this potion (Red Potion, Orange Potion, Yellow Potion) If you want A spot to have Bass, just add the string "Bass" into the A spot .fish_list$ local array. (Example" setarray .fish_list$,"Bass";) Mode currently support: (Will add more mode in the future) [getitem] (item giving fish) [delitem] (item stoler) [useskill] (The hooked on fish will use random skill define in this fish database and cast it on fisher) [mob] (the hook on fish will get summon on fisher spot) (Optional: If you have my Monster Controller script installed the summoned mob will always be aggressive) Buff Fish Example: Currently setting which can set on different spot are: .rod_list (rod id which can be use in this spot) .bait_list (bait id which can be use in this spot) .fish_list$ (fish which will appear in this spot) [Note: Use the Fish String in $@fish_data$ to put it here] About the Other Config, I believe it not hard to understand, but if you need more clear on what it do, I will try to explain it more here: .hide_rate (The rate which the spot will get hide after each fishing) .delayfail (Set hide time on fail fishing) .delaysuccess (Set hide time on success fishing) .line_break_rate (I believe the description behide the variable already make it clear enough@@) .variation (If you increase this value, the indicator on fishing will be more randomize which will surely make it more harder to fish) Hope this will let you understand more. Feel free to ask if you got more question. Suggestion and idea are welcome.
  12. View File (Bug Fixed) Fishing Simulation System (Timing Fishing + Sound Included) [NOTE] For now on I will keep release all of my work for free , I hope most people can enjoy my script without paid. But if you still want to support my work, please consider donate or become my patron. Thank you. Tired of boring odd base fishing game which just click and wait for the reward? Then maybe you will need this simulate fishing game. Idea from a Japanese Video Game. The Legend of Heroes VI: Sora no Kiseki Feature: Easy add / modify / remove local database Not bound to npc when fishing, that mean you can walk freely, but there are timeout there. Everyone can look and hear how you fish Sound Effect included Easy setup and configure each fishing spot Can easily duplicate the npc and will not conflict to each other Global Rod / Bait / Fish Database Example: Each Spot Npc Example: This script need my release of: If you bought this script and need help on setting the npc, feel free to pm me on rAthena mailbox. Suggestion are welcome. Upcoming List: Leaderboard Fishing Contest Private Pond & Public Pond By downloading this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script and sound. Terms above may be changed or adjusted without prior notification. Copyright © - Yuchinin 2017 - All Rights Reserved Submitter yuchinin Submitted 04/18/2017 Category Games, Events, Quests Video https://youtu.be/Yj6UOTC2r_A Content Author yuchinin
  13. View File Yuchinin Common Library //===== rAthena Script ======================================= //= Yuchinin Common Library //===== By: ================================================== //= Yuchinin //===== Current Version: ===================================== //= 2.2 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= A common useful function I wrote to make my life easier. //= Most of my release script will need this to work //=====******** Note ********================================= //= This will be the core of my other script. //= Better let it load first before adding my other script. //===== Additional Comments: ================================= //= 1.0 Initial script. //= 1.1 Change function arrdel from using 'value' to 'index' //= 1.2 Fixed sql query bug //= 1.3 Added Url, npcmes //= 1.4 Added strcharinfo2 to avoid offline player return empty //= String //= 1.4a Fixed arrdel //= 1.4b Fixed arrfind //= 1.4c Add arrdel, arrfind notsensitive bool //= 1.5 Add answer_chk to check input value from define value //= 1.5a Optimize npcindistance //= 1.5b Try to fix npcindistance //= 1.6 Added marketshopcountitem, marketshopdelitem //= 1.7 Added itemcheck, varcheck //= 1.8 Added itemname //= 1.9 Revamped itemcheck and varcheck //= 1.9a Comment out the debugmes of function arradd //= 2.0 Added running Marquee //= 2.1 Added function itemtype to return item type in string //= 2.2 Added getcharid2 to counter getcharid which need attached //============================================================ Submitter yuchinin Submitted 04/18/2017 Category Utilities Content Author  
  14. Version 1.2.2b

    2169 downloads

    [NOTE] For now on I will keep release all of my work for free , I hope most people can enjoy my script without paid. But if you still want to support my work, please consider donate or become my patron. Thank you. Tired of boring odd base fishing game which just click and wait for the reward? Then maybe you will need this simulate fishing game. Idea from a Japanese Video Game. The Legend of Heroes VI: Sora no Kiseki Feature: Easy add / modify / remove local database Not bound to npc when fishing, that mean you can walk freely, but there are timeout there. Everyone can look and hear how you fish Sound Effect included Easy setup and configure each fishing spot Can easily duplicate the npc and will not conflict to each other Global Rod / Bait / Fish Database Example: Each Spot Npc Example: This script need my release of: If you bought this script and need help on setting the npc, feel free to pm me on rAthena mailbox. Suggestion are welcome. Upcoming List: Leaderboard Fishing Contest Private Pond & Public Pond By downloading this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script and sound. Terms above may be changed or adjusted without prior notification. Copyright © - Yuchinin 2017 - All Rights Reserved
    Free
  15. Version 2.4.1

    787 downloads

    //===== rAthena Script ======================================= //= Yuchinin Common Library //===== By: ================================================== //= Yuchinin //===== Current Version: ===================================== //= 2.2 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= A common useful function I wrote to make my life easier. //= Most of my release script will need this to work //=====******** Note ********================================= //= This will be the core of my other script. //= Better let it load first before adding my other script. //===== Additional Comments: ================================= //= 1.0 Initial script. //= 1.1 Change function arrdel from using 'value' to 'index' //= 1.2 Fixed sql query bug //= 1.3 Added Url, npcmes //= 1.4 Added strcharinfo2 to avoid offline player return empty //= String //= 1.4a Fixed arrdel //= 1.4b Fixed arrfind //= 1.4c Add arrdel, arrfind notsensitive bool //= 1.5 Add answer_chk to check input value from define value //= 1.5a Optimize npcindistance //= 1.5b Try to fix npcindistance //= 1.6 Added marketshopcountitem, marketshopdelitem //= 1.7 Added itemcheck, varcheck //= 1.8 Added itemname //= 1.9 Revamped itemcheck and varcheck //= 1.9a Comment out the debugmes of function arradd //= 2.0 Added running Marquee //= 2.1 Added function itemtype to return item type in string //= 2.2 Added getcharid2 to counter getcharid which need attached //============================================================
    Free
  16. You may do a sql query on login table to change all of their savepoint which match the current house map to a town coordinate or set your own, make it do the work below this line: killmonsterall "rentin" + getarg(0) + ".gat";
  17. Scripting Core Released Script Pending Script Upload: 【SHOWCASE】DotA Style Monster Behavior (Monster Controller) 【SHOWCASE】ARCUS SYSTEM A communication device to provide feature below: Calling npc from distance Mailing System Hook GPS System Hook (Navigation Npc, Player) Magic Support More feature developing... Arcus System Spoiler: (Old)
  18. New version updated! Sorry about the missing function on the previous version. Fixed F_Beverage function not found error and also add the description file
  19. Opps sorry my bad I should have put on my spectacles
  20. Just like what I say in the PM, most theme installation will just need to download the CP theme and copy paste the theme folder and replace your own CP theme folder, it should be easy.
×
×
  • Create New...