Jump to content

Kubix

Members
  • Content Count

    150
  • Joined

  • Last visited

  • Days Won

    20

Posts posted by Kubix


  1. Found a bug: At level 19, counter is 40 but it have only 20 mobs. Or atleast i just doesnt have Mime Monkey mobs. And the last Pain probably must be Lord Knight Seyren and not a Whitesmith Harword which was before.

    And my hgreat thanks to you Kubix! Release is amazing.

    Thank you!

     

    @@Aeromesi I know about set, and I will update the script.

    Current Endless Cellar not working on Hercules.

    http://herc.ws/board/topic/5177-endless-cellar/?hl=%2Bendless+%2Bcellar


  2. Hi there.

     

    I don't know what to do x.x

    After warp to instance - client crashing.

     

    Script:

    instances,107,138,7	script	Test	PORTAL,{
    	
    	.@md_name$	= "Test";
    	.@party		= getcharid(1);
    	.@p_name$	= getpartyname(.@party);
    
    	
    	if( !instance_check_party(.@party, 1) )
    	{
    		mes .@md_name$;
    		mes "Fail: 1";
    		close;
    	}
    	
    	switch(select("Generate:Enter:Destroy"))
    	{
    		case 1:
    			.@instance = instance_create(.@md_name$, .@party);
    			if(.@instance < 0)
    			{
    				mes "Fail.";
    				close;
    			}
    						
    			instance_attachmap("1@elements", .@instance);	
    			instance_set_timeout 14400, 300, .@instance;
    			instance_init(.@instance);
    			instance_attach .@instance;
    			warp instance_mapname("1@elements", .@instance), 86, 74;
    			end;
    						
    		case 2: 
    			if (has_instance("1@elements") != "")
    				warp instance_mapname("1@elements", .@instance), 86, 74;
    			else end;
    						
    		case 3: 
    			instance_destroy(.@instance); 
    			close;
    	}
    	
    }
    

     

    resnametable:

    [email protected]#[email protected]#
    [email protected]#[email protected]#
    [email protected]#[email protected]#
    유저인터페이스\map\[email protected]#유저인터페이스\map\[email protected]#
    

    Map added to mapindex, maps.conf, and my grf.

    when i use @warp 1@elements - OK.

     

    Also i try :

     

    warp has_instance("1@elements", .@instance), 86, 74;
    warp "1@elements", 86, 74;
     

    help xD

     


  3. Yes, but you need add music name to array (150~ names)

    -[tab]script[tab]BGMCOMMAND[tab]FAKE_NPC,{
    OnInit:
    bindatcmd "bgm", strnpcinfo(0) + "::OnStartBGM", 99, 99;
    setarray .musicName$[0], "1", "2", "3"; //add yours
    end;
    
    OnStartBGM:
    	
    	if(.@atcmd_parameters$[0] == "")
    	{
    		message strcharinfo(0), "BGM failed: invalid music name";
    		end;
    	}
    	
    	freeloop(1);
    	for(.i = 0; .i < getarraysize(.musicName$); .i++)
    	{
    		if(.@atcmd_parameters$[0] == .musicName$[.i]){
    			playbgmall .@atcmd_parameters$[0];
    			message strcharinfo(0), "BGM: Played - " + .@atcmd_parameters$[0];
    			end;
    		}
    	}
    	freeloop(0);
    	message strcharinfo(0), "BGM failed: invalid music name";
    	end;
    }
    

    not tested


  4. request: http://herc.ws/board/topic/11776-request-forum-system/

     

    For?

    You can give rewards ingame for forum achievements.

    Example:

     

    100 messages = 500K zeny

    20 likes = 50k zeny

    3 trophies = 3K zeny

    and whatever you want:)

     

    Maybe later I will write a new functions for give rewards on forum for achievements in game

    Example:

    100 pvp kills = new icon on forum and etc.

     

    Info:

    Forum tables must be in one database with ragnarok tables (because I do not remember whether you can use a different database from RO, in addition to the one that is configured in inter_athena)

     

    Video: https://youtu.be/2C3VzMWV2G4

    Download (sample NPC and FluxCP addon): Google Drive

     

    Configure /addons/integration/lang/en_us.php !


  5. Hello, community :)

     

    I wanna show you my release - Followers like in World of Warcraft (maybe XD)

    I start write this in august 2015 o.O

    Current version: 2.0.1

    Languages: Russian/English

    FluxCP addon: included

     

     

    Some info: (sorry for my English)

     

    Based on SQL and dynamic variables.

    4 classes: Warrior, Healer, Mage, Assassin

    Max. Follower level: 7

    Followers have a item level.

     

    Mission types:

    Standart- rewards taken from SQL

    Random- rewards taken from arrays for each follower level

    Special (if variable random_reward = 1) you can set your special item ID for each mission, if random reward is ON.

     

    Chance for complete:

    You can set your standart chance for complete mission (standart: 25%)

    Each mission have a requirement for item level (if you want)

    So, if mission req. item level = 50 and Follower item level = 100 chance for complete will be like 60% (if 25 = standart)

    But if Follower item level = 0 and mission item level = 50 chance will be (5%~)

     

    How to create a new Follower from game?

    You can create a NPC that gives a Followers, or new items for each Follower :)
    For create just use a function: 

    callfunc("Companion_Create", unique_id from 'companion_list' table in SQL);
    
    

    I have a companion in DB:

    Name: Mellisandra

    UniqueID: 1

    Class: 2 (healer)

     

    so, i create a simple script:

     

    map,x,y,face[tab]script[tab]Simple Follower[tab]sprite,{
      mes "Hello! I can create Follower for you!";
      next;
      if(select("yes, please!:No, thx") == 2) close;
      callfunc("Companion_Create", 1);
      close;
    }
    

     

    this script will give a player Follower with ID 1 (Mellisandra)

     

    Guys, i'm really sorry for my english, I wanted to tell you all information, but I can not express the idea
    Maybe someone will use this and create guide for you.

    I'll try to answer your questions.

     

    Special thanks for: Google Translate.

    Good luck:)

     

    Script: http://pastebin.com/5cMPGsMh

    SQL: http://pastebin.com/465XdhBr
    Time function: http://upaste.me/aba022682946e3a7d

     

    Together (with FluxCP addons): Companions_ENGLISH.rar

     

    Preview addons:

    http://kubix-service.ru/?module=followers&action=list_all

    http://kubix-service.ru/?module=missions&action=list

    Preview video (russian interface, sorry):

    https://www.youtube.com/watch?v=j3u4dIfKVs0&feature=youtu.be
    https://www.youtube.com/watch?v=cdGGQ50VmhY&feature=youtu.be

     

     

    Original post from Russian eA-Support: http://ea-support.ws/index.php?/topic/3467-s-sistema-soratnikov-world-of-warcraft/

×
×
  • Create New...

Important Information

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