Jump to content

crazyarashi

Developer
  • Posts

    763
  • Joined

  • Last visited

  • Days Won

    20

Posts posted by crazyarashi

  1. You will need a japanese translation for NPC'S and japanese msg_conf server side. As for client you can mainly use the client files of jRO and convert the id's of the client item data from text -> to lua ( if you're going to use kRO Clients )
    I do have my own private japanese translation project i have finish most basic NPC's, msg_conf and jRO's adventure academy. Basically you need to start from scratch if you want a japanese language server

  2. Dynamic mob doesn't have to do anything with the idea you're looking for. dynamic mob is used for spawning monsters even though player is no players in the map.
    if you restarted server it would likely restart all the monsters since this monsters are spawn via npc scripts.
    Your idea will most likely work if you make a custom monster spawn and store its data.

  3. -	script	hourly_treasure	-1,{
    OnMinute00:
    OnStart:
    //= Add your announce here.
    	for(.@i = 0; .@i < .spawn_count; .@i++){
    		monster .map_list$[rand(getarraysize(.map_list$)],0,0,"Treasure Chest",.treasure_mob_id,1,strnpcinfo(0)+"OnTreasureKill";
    	}
    	end;
    	
    OnTreasureKill:
    	announce "[ System ] : " + strcharinfo(0) + " has found a Treasure Chest.";
    	getitem .reward_id,.reward_amount;
    	end;
    	
    OnInit:
    	.spawn_count = 5;
    	.treasure_mob_id = 1001;
    	.reward_id = 501;
    	.reward_amount = 50;
    	setarray .map_list$,"prontera","izlude","geffen";
    	end;
    }

     

    • Love 1
  4. 1547847402_ScriptCollection.png.4d7c242826e72a5580fb9d76e66c4c8b.png

     

    Greetings, I would like to share some of my scripts here, so I decided to make a github repository for scripts. It's not much but I will gradually update/increase the size of my collection ^^
    You can report bugs in my github and also make requests there, I will make it in my free times ( Depends on the request )
    Note : I use a lot of personal functions(I like to make my script as short as possible - lazy) and I don't know if some parts of the scripts have the missing functions just bump me in github if it's missing.

    Github Repository : Click Me

    Rathena Requests/Others :
    Dynamic MVP Points
    Item Swap Function
    Costume Drop
    Autoloot Setting
    Invasion Script

    Instance @cooldown
    Recycle NPC
    Custom Illusion Moonlight

    17.1 Illusion Custom


    Latest Update : March 13, 2021

     

    • Upvote 2
    • Love 3
    • MVP 2
    • Like 1
×
×
  • Create New...