Jump to content

Brynner

Members
  • Posts

    1942
  • Joined

  • Last visited

  • Days Won

    14

Posts posted by Brynner

  1. huh i wish i could help D:!

     

    i just see 2 <?>

     

    NPzO1Ed.png

     

    well, i hope more than 1 is going to help you, good luck all o:!

    huh i wish i could help D:!

     

    i just see 2 <?>

     

    NPzO1Ed.png

     

    well, i hope more than 1 is going to help you, good luck o:!

    if you change the default language of your computer it will display correctly.

    • Upvote 1
  2. Hi Good Day,

     

    I got the Free FluxCP From - EADev on FB which is Integrated FluxCP. After he gave me the file he ask me what Emulator i used.  Since im using HERCULES Emulator. He told me.

     

    Yes, i know. We don't have hercules version available but rAthena should work on hercules. Regards.

     

    Can someone help me to convert the FluxCP into Hercules.

     

    BTW Let me know if you need the files. I know this FluxCP is free. but u need first to share there page to get it. i will not upload and posted on public. ill send it you privately

     

    Thank you in advanced.

     

     

    Regards,

    is that the green one?

    1231172_458157520950019_630524693_n.jpg

  3.  

    guys what is the problem if im having this problem??

     

    [Debug]: Source (NPC): Rebirth System at prontera (185,145)
    : DB error - Table 'ragnarok.rebirth_system' doesn't exist
    [Debug]: at script.c:15152 - insert into `rebirth_system` values ( 2000001, 'sdfgnsgn', '8', '114.17.201.213' ) on duplicate key update `num_rebirth` = `num_rebirth` +1
    [Debug]: Source (NPC): Rebirth System at prontera (185,145)
    [sql]: DB error - Table 'ragnarok.rebirth_system' doesn't exist
    [Debug]: at script.c:15152 - insert into `rebirth_system` values ( 2000001, 'sdfgnsgn', '9', '114.17.201.213' ) on duplicate key update `num_rebirth` = `num_rebirth` +1
    [Debug]: Source (NPC): Rebirth System at prontera (185,145)
     
    here is my script
     
    
    /*
    CREATE TABLE IF NOT EXISTS `rebirth_system` (
    `account_id` int(11) unsigned NOT NULL default '0',
    `name` varchar(255) NOT NULL DEFAULT 'NULL',
    `num_rebirth` int(11) unsigned NOT NULL default '0',
    `last_ip` varchar(100) NOT NULL default '',
    PRIMARY KEY (`account_id`)
    ) ENGINE=MyISAM;
    */
    
    prontera,185,145,4	script	Rebirth System	403,{
    function checkItem;            // check if player have all item required
    function colorItemrequired;    // color the text. Red : not enough item, green otherwise
    function deleteItem;        // delete all items required
    function displayItemneed;    // display all items need at start
    function getItemReward;        // give the items reward
    function weightreq;            // check if your current weight is highter than weight high novice
    
    
        .@eac = eaclass();
        if ( num_rebirth == .reset_max ) {
            mes "You can only rebirth x"+ .reset_max +".";
            emotion e_gasp;
            close;
        }
        else if( NextJobExp || NextBaseExp || !( .@eac&EAJL_2 ) || !Upper ) {
            mes "You must be rebirth max level/max job level.";
            close;
        }
    
        mes "Items need :";
        displayItemneed();
        next;
    
        switch( select( "^777777~ Rebirth", "~ Informations", "~ Good bye^000000" ) ) {
            case 1:
                weightreq();
                checkItem();
                deleteItem();
                break;
            case 2:
                mes "You can only rebirth ^ff0000x"+ .reset_max +"^000000. You already rebirth ^ff0000x"+ num_rebirth +"^000000.";
                mes "Each rebirth you get ^ff0000"+ .num_status +"^000000 status points and after ^ff0000"+ .change_reward +"^000000 rebirth, you get only some items.";
                close;
            case 3:
                mes "Bye.";
                close;
        }
        num_rebirth += 1;
        if ( Upper ) {    // just in case the user change the setting...
            lastJob = roclass( .@eac&EAJ_UPPERMASK );
            jobchange Job_Novice_High;
        }
        else
            jobchange Job_Novice;
        resetlvl 1;
        if ( num_rebirth < .change_reward )
            StatusPoint = StatusPoint + .num_status * num_rebirth;
        else
            getItemReward();
        query_sql "insert into `rebirth_system` values ( "+ getcharid(3) +", '"+ escape_sql( strcharinfo(0) ) +"', '"+ num_rebirth +"', '"+ getcharip() +"' ) on duplicate key update `num_rebirth` = `num_rebirth` +1";
        announce "[ Rebirth system ] : "+ strcharinfo(0) +" rebirth for the "+ num_rebirth +" time !", 0;
        close;
    
    
    
    function checkItem {
        for ( ; .@i < .size_item; .@i += 2 )
            if ( countitem( .item_req[.@i] ) < .item_req[ .@i+1 ] + num_rebirth ) {
                mes "You don't have enought "+ getitemname( .item_req[.@i] ) +". ^ff0000["+ countitem( .item_req[.@i] ) +"/"+ ( .item_req[ .@i+1 ] + num_rebirth ) +"]^000000";
                close;
            }
        if ( num_rebirth >= .change_reward )
            if ( .add_item_req[1] + num_rebirth - .change_reward > countitem( .add_item_req[0] ) ) {
                mes "You don't have enought "+ getitemname( .add_item_req[0] ) +". ^ff0000["+ countitem( .add_item_req[0] ) +"/"+ ( .add_item_req[1] + num_rebirth - .change_reward ) +"]^000000";
                close;
            }
        return;
    }
    
    function colorItemrequired {
        if ( countitem( .item_req[ getarg(0) ] ) < .item_req[ getarg(0)+1 ] + num_rebirth ) return "^ff0000";
        return "^00ff00";
    }
    
    function deleteItem {
        for ( ; .@i < .size_item; .@i += 2 )
            delitem .item_req[.@i], ( .item_req[ .@i+1 ] + num_rebirth );
        if ( num_rebirth >= .change_reward )
            delitem .add_item_req[0], ( .add_item_req[1] + num_rebirth - .change_reward );
        return;
    }
    
    function displayItemneed {
        for ( ; .@i < .size_item; .@i += 2 )
            mes colorItemrequired( .@i ) +" - x"+ ( .item_req[ .@i+1 ] + num_rebirth ) +" "+ getitemname( .item_req[.@i] );
        if ( num_rebirth >= .change_reward ) {
            if ( .add_item_req[1] + num_rebirth - .change_reward > countitem( .add_item_req[0] ) )
                .@color$ = "^ff0000";
            else
                .@color$ = "^00ff00";
            mes .@color$ +"- x"+ ( .add_item_req[1] + ( num_rebirth - .change_reward ) ) +" "+ getitemname( .add_item_req[0] );
        }
        return;
    }
    
    function getItemReward {
        for ( ; .@i < .size_reward; .@i += 2 )
            getitem .reward[.@i], .reward[ .@i+1 ];
        return;
    }
    
    function weightreq {
        if ( Weight > 20000 ) {
            mes "You have too much items on you. Your weight will be too high after rebirth.";
            close;
        }
        return;
    }
    
    OnInit:
        .reset_max = 9;        // how much reset max
        .change_reward = 10;    // after 30 rebirth, change reward
        .num_status = 100;        // + X number of status points
    
    // item required <item ID>, <number>
        setarray .item_req, 501, 5,
                            502, 2,
                            503, 3;
        .size_item = getarraysize( .item_req );
    
    // additionnal items after rebirth >> .change_reward
    // <item ID>, <number>
        setarray .add_item_req, 601, 1;
    
    // rewards <item ID>, <number>
        setarray .reward, 504, 1;
        .size_reward = getarraysize( .reward );
        end;
    }
    

     

    the error is the missing ragnarok.rebirth_system on your sql.

     

    try to run this on your sql query.

    CREATE TABLE IF NOT EXISTS `rebirth_system` (
    `account_id` int(11) unsigned NOT NULL default '0',
    `name` varchar(255) NOT NULL DEFAULT 'NULL',
    `num_rebirth` int(11) unsigned NOT NULL default '0',
    `last_ip` varchar(100) NOT NULL default '',
    PRIMARY KEY (`account_id`)
    ) ENGINE=MyISAM;
    
  4. Friends computer for now, I actually dont know why he wanted to host. He just offered so i let him.

     

    Update: Another one of our friends was able to connect. I still don't know how they can connect and we cant. Does having rathena in my computer not allow me to connect to other RO servers?

    for your clientinfo.xml make sure the address you use is.

     

    <address>wanip</address>

  5. how can i add soul link buffs here?when i try to add SC_SPIRIT nothings happen. thank you in advance.

    -	script	Healer	-1,{
    	
    	set .@Price,0;	// Zeny required for heal
    	set .@Buffs,1;	// Also buff players? (1: yes / 0: no)
    	set .@Delay,0;	// Heal delay, in seconds
    
    	callfunc "F_ClearGarbage",0;
    	if (@HD > gettimetick(2)) end;
    	if (.@Price) {
    		message strcharinfo(0),"Healing costs "+.@Price+" Zeny.";
    		if (Zeny < .@Price) end;
    		if(select("^0055FFHeal^000000:^777777Cancel^000000") == 2) close;
    		set Zeny, Zeny-.@Price;
    	}
    	specialeffect2 EF_HEAL2; percentheal 100,100;
    	if (.@Buffs) {
    		for( .@i = 0; .@i < .size_buff; .@i++ ) {
    			.@sum = atoi(.@b$[.@i]) + .min_Levels[.@i];
    			.@j = .Buffs$[.@i];
    			if( .@sum )
    				sc_start .@j,240000,.@sum;
    		}
    	}
    	if (.@Delay) set @HD, gettimetick(2)+.@Delay;
    	close;
    OnInit:
    	deletearray .Buffs$;
    	deletearray .min_Levels;
    
    	setarray .Buffs$, SC_INCREASEAGI, SC_BLESSING, SC_KYRIE, SC_SPIRIT;
    	setarray .min_Levels,        5,        5,       0,       0;
    
    	.size_buff = getarraysize( .Buffs$ );
    	end;	
    }
    
    prontera,163,185,6	duplicate(Healer)	Healer#alb	909
    
    
  6. just copy the whole folder and it will works both addons.


    all you need to edit is the config\application.php for your fluxcp2 only.

     

    'BaseURI'              => '/fluxcp/', to 'BaseURI'              => '/fluxcp2/',

     

    so every time you chose fluxcp2 when you click a link it will redirect you to fluxcp.

    • Upvote 1
  7. Hi, thanks for the repply

     

    I know, but in the past i tryied to switch themes or i was testing and i got some errors, i solve them but that's why i would like to have 2 FluxCP, if i test in one and i egt an error there, then i can just switch to the other one.

     

    The main problem might be to connect both to the same DB of my sql (?)

    you can copy the whole folder of your already installed fluxcp. just like making a backup.

    ex.

    fluxcp = your main cp

    fluxcp2 = your backup cp

     

    so if you fluxcp main having an issue. you can switch your fluxcp to fluxcp2

    yourro.com/fluxcp to yourro.com/fluxcp2.

     

    and it will works fine since the required installation files and logs is already installed on fluxcp. all you need is to copy it.

    • Upvote 1
  8. i just wondering what's new on it because they say.

    What's New?
    The description files are kept upto-date with each new commit from rAthena.
    Pre-integrated themes:
    
    default
    Bootstrap
    

    but when i check what is Bootstrap?

     

    and some page is isn't working.

     

    bug i encounter.

    News system does not work properly. you can't edit or modified the news. you can't delete it.

     

    Rangking.

     

    Homunculus

    	
    Page Not Found
    
    The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.
    
    /rathena-FluxCP/?module=ranking&action=homunculus
    

    Bowman 

    	
    Page Not Found
    
    The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.
    
    /rathena-FluxCP/?module=ranking&action=bowman
    

    Spearman

    	
    Page Not Found
    
    The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.
    
    /rathena-FluxCP/?module=ranking&action=spearman
    

    Swordman

    	
    Page Not Found
    
    The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.
    
    /rathena-FluxCP/?module=ranking&action=swordman
    

    MvPs

    	
    Page Not Found
    
    The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.
    
    /rathena-FluxCP/?module=ranking&action=mvp
    

    Tools

    	
    Page Not Found
    
    The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.
    
    /rathena-FluxCP/?module=tools&action=phpminiadmin
    
  9. I am currently using the latest 2014 Clients and The latest lua files. The problem is, When i try to @job High Wizard or Manually change class to High Wizard, My Client Crashes. Can anyone help me with this problem?

    are you using latest kRO files?maybe missing spr files for that class.

  10.  

     

    This method fixed my aura problem.

    Hope it works for anyone :D

     

    1st Download this plugin and diff your client.

     

    diff your client EnableAuraOverLvl99 

     

    2nd Open src/map/battle.c and find 

    { "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
    { "aura_lv",	 &battle_config.aura_lv,	 160,	 0,	 160,	 },
    

    3rd Change the following

    { "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
    { "aura_lv",	 &battle_config.aura_lv,	 255,	 0,	 255,	 },
    

    4th Open conf/battle/client.conf then find and replace with this

    // Maximum allowed 'level' value that can be sent in unit packets.
    // Use together with the aura_lv setting to tell when exactly to show the aura.
    // NOTE: You also need to adjust the client if you want this to work.
    // NOTE: Default is 99. Values above 127 will probably behave incorrectly.
    // NOTE: If you don't know what this does, don't change it!!!
    max_lv: 99
    
    // Level required to display an aura.
    // NOTE: This assumes that sending max_lv to the client will display the aura.
    // NOTE: aura_lv must not be less than max_lv.
    // Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149
    //          will be sent as being all level 98, and only characters with level
    //          150 or more will be reported as having level 99 and show an aura.
    aura_lv: 255
    
    // Units types affected by max_lv and aura_lv settings. (Note 3)
    // Note: If an unit type, which normally does not show an aura, is
    //       set it will obtain an aura when it meets the level requirement.
    // Default: 0 (none)
    client_limit_unit_lv: 1
    

    5th Recompile & Start your server.

    Note : I'm using 2012-04-10aragexe (I forgot where did I download this but credits to the owner, I can't find the download link so I reupload it)

    Download here : https://www.mediafire.com/?z8bhj45qye8h0x0

    does other player can see the aura?or only you?

     

    All players can see others aura like this

    sqk392.jpg

     

    aura works fine up to alternative job. but for 3rd job class that use other aura does not able to see by the other character.

    below trans class.

×
×
  • Create New...