Jump to content

Neffletics

Members
  • Content Count

    65
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by Neffletics


  1. On 1/25/2021 at 11:44 PM, aabarreto said:

    Ok, I managed to make it work... Now, another problem. I configured everything to port 3306, but xampp will only open while using port 3307, since the 3306 is already occupied... Any idea of how to solve it?


    End the process that's using port 3306. 

    More info: https://veerasundar.com/blog/2009/10/how-to-check-which-application-is-using-which-port/


  2. Just create 2 separate scripts (see sample below). 

    -	script	FloatingRatesStarter	FAKE_NPC,{
    OnInit:
    //add any other HOURS
    OnHour01:
    //-------------------
    	set $@brate,rand(100,150);
    	set $@jrate,rand(100,150);
    	set $@drate,rand(100,150);
    	//Base exp
    	setbattleflag("base_exp_rate",$@brate);
    	//Job exp
    	setbattleflag("job_exp_rate",$@jrate);
    	//Drops
    	setbattleflag("item_rate_common",$@drate);
    	setbattleflag("item_rate_heal",$@drate);
    	setbattleflag("item_rate_use",$@drate);
    	setbattleflag("item_rate_equip",$@drate);
    	//we don't change card drops rate, because these values won't change them anyway
    	atcommand "@reloadmobdb";
    
    	announce "Current Rune-Midgard rates are: 1."+($@brate-100)+"x 1."+($@jrate-100)+"x 1."+($@drate-100)+"x",bc_all,0xFF6060;
    	end;
    }
    
    -	script	FloatingRatesEnder	FAKE_NPC,{
    OnInit:
    //add any other HOURS
    OnHour03:
    //-------------------
    	set $@brate,100;
    	set $@jrate,100;
    	set $@drate,100;
    	//Base exp
    	setbattleflag("base_exp_rate",$@brate);
    	//Job exp
    	setbattleflag("job_exp_rate",$@jrate);
    	//Drops
    	setbattleflag("item_rate_common",$@drate);
    	setbattleflag("item_rate_heal",$@drate);
    	setbattleflag("item_rate_use",$@drate);
    	setbattleflag("item_rate_equip",$@drate);
    	//we don't change card drops rate, because these values won't change them anyway
    	atcommand "@reloadmobdb";
    
    	announce "Current Rune-Midgard rates are back to normal!",bc_all,0xFF6060;
    	end;
    }



     


  3. 31 minutes ago, lowkey said:

    thanks for the input.. im following your tips and currently developing everything on the offline server. maybe ill give myself time and if I can learn everything, i will be the server/developer as well. Cheers*


    Everything you need to know is in Herc and rAthena forums. Also, you'll get a faster response in the Discord channel should you have technical questions. Good luck!


  4. If you don't know how to independently operate everything, you're not supposed to open a server. You'll just end up like most of the server owners in the Philippines, who are popping out like mushrooms because of the income they can generate and disappears in a month. I'm sure most server owners will deny it, but you can easily tell what motivates them just by viewing their donation shop and patch notes.

    Running a server requires competence, patience, and consistency. These 3 values are important for a server to survive its 1st year. This is based on my own experience in SolaceRO.

     

    Final advice: 

    Knowing how to 'program' will not make you a good server owner. Acquire some experience first; join someone else's server as a co-developer.

×
×
  • Create New...

Important Information

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