Jump to content

Titan

Members
  • Posts

    135
  • Joined

Posts posted by Titan

  1. I'm using 20151104 client and disable renewal features. Compiled it flawlessly but i'm getting this error when I run the server

    Quote

    [Debug]: script debug : 0 110010939 : jobmaster: BabyExpanded is disabled due to
     outdated PACKETVER.
    [Debug]: script debug : 0 110010939 : jobmaster: BabySummoner is disabled due to
     outdated PACKETVER.

    How to remove this problem? or should i ignore this? Thank you

  2. On 11/7/2018 at 5:40 PM, likhasapalad said:

    Patulong naman po, newbie po ako, nag try po ako gumawa server, okay naman naka install ung rathena sa ubuntu16, nakaka connect po naman at nakakapag play pero pag nag try ako mag @jobchange < ID > bakit kaya di nag babago ung itsura nung character halimbawa sana hunter ung itsura, pero di po sya nag bago, ganon pa rin, ung sa screenshot ko po kune knight po.. pero ung itsura nya during play di po nag bago,,, ano po kaya problema mga idol? sana may makapansin

    Screenshot (12).png

    naka admin account ka kasi kaya kahit anong change mo di talaga magbabago yan unless edit mo sa client side. New account ang solusyon para matry mo as normal player. Good luck!

  3. On 4/8/2017 at 3:13 PM, srhmike said:

    That script you provided, I think only ranks them by the amount of castles they have at the moment, and then their guild level.  Wouldnt need to reset because the next WoE it would be different.

    So this script is a daily guild ladder. I need something that can be monthly and able to reset.

  4. On 3/28/2017 at 3:01 PM, Titan said:

    Can I request for this script? something that counts daily agit owner after woe then option for admin to restart every month. Maybe top 5 guilds will be on that list. Thanks in advance.

    Post updated with found script to be modify. Thanks

  5. Can I request for this script? Found this script below:

    //===== eAthena Script ======================================= 
    //= Amatsu Guides
    //===== By: ================================================== 
    // Rahul Dev
    // Thanks to Myzter
    //===== Current Version: ===================================== 
    //= 1.0
    //===== Compatible With: ===================================== 
    //= eAthena/ rAthena SVN
    //===== Description: ========================================= 
    //= Castle Ranking
    //===== Additional Comments: ================================= 
    //= 1.0 
    //============================================================
    
    prontera,139,175,5	script	Guild Ranking	415,{
    
    	// Configurations
    	[email protected]_ranking = 10;	// Max Rankings to display. 
    	
    
    	// Do not touch
    	for (set [email protected],0; [email protected] < [email protected]_ranking; set [email protected],[email protected] + 1) {
    		if ([email protected]) mes "- - - - - - - - - - - - - - -";
    		mes "# ^ff0000" + ([email protected] + 1) + "^000000: ^0000ff" + ( (.GuildName$[[email protected]])? .GuildName$[[email protected]]:"None" ) + "^000000";
    		mes " - Master: ^0000ff" + ( (.GuildMaster$[[email protected]])? .GuildMaster$[[email protected]]:"None" ) + "^000000";
    		mes " - Territories: ^ff0000" + .NumCastles[[email protected]] + "^000000";
    		mes " - Members: ^ff0000" + .NumMembers[[email protected]] + "^000000";
    	}
    	close;
    
    OnAgitEnd:
    OnAgitEnd2:
    OnInit:
    	set .Cnt, query_sql("SELECT (SELECT count(c.castle_id) FROM guild_castle c WHERE c.guild_id = g.guild_id) castles, CONCAT(g.name, ' (LV. ',g.guild_lv,')') guild, count(g.char_id) members, g.master FROM guild g LEFT JOIN guild_member m ON g.guild_id = m.guild_id GROUP BY g.guild_id HAVING castles > 0 ORDER BY castles DESC, guild_lv DESC, members DESC", .NumCastles,.GuildName$,.NumMembers,.GuildMaster$);
    	waitingroom "Top 10 Guild",0;
    	end;
    }

    I want to have the option for admin to restart every month. Thanks in advance.

    Guild_Ranking.txt

  6. On 5/24/2014 at 7:26 AM, Emistry said:

    just add to whichever NPC that you want it to display the time.

    how to make it as a countdown timer? example i want it to count the time before 20:00/8:00. Thanks

  7. 13 hours ago, Scylla said:

    refine.txt

    Find:

    // Weapon/Armor Refiners
    //============================================================
    prt_in,63,60,0	script	Hollgrehenn	85,{
    	callfunc "refinemain","Hollgrehenn",0;
    	end;
    }
    morocc_in,73,38,6	script	Aragham	99,{
    	callfunc "refinemain","Aragham",0;
    	end;
    }
    payon,144,173,5	script	Antonio	88,{
    	callfunc "refinemain","Antonio",0;
    	end;
    }
    alberta_in,28,58,0	script	Fredrik	85,{
    	callfunc "refinemain","Fredrik",0;
    	end;
    }
    yuno_in01,171,21,4	script	Lambert	88,{
    	callfunc "refinemain","Lambert",0;
    	end;
    }
    ein_in01,24,87,5	script	Manthasman	826,{
    	callfunc "refinemain","Manthasman Pruhag",0;
    	end;
    }
    lhz_in02,282,20,7	script	Fulerr	869,{
    	callfunc "refinemain","Fulerr",0;
    	end;
    }

    Change to:

    // Weapon/Armor Refiners
    //============================================================
    prt_in,63,60,0	script	Hollgrehenn	85,{
    	callfunc "refinemain","Hollgrehenn",1;
    	end;
    }
    morocc_in,73,38,6	script	Aragham	99,{
    	callfunc "refinemain","Aragham",1;
    	end;
    }
    payon,144,173,5	script	Antonio	88,{
    	callfunc "refinemain","Antonio",1;
    	end;
    }
    alberta_in,28,58,0	script	Fredrik	85,{
    	callfunc "refinemain","Fredrik",1;
    	end;
    }
    yuno_in01,171,21,4	script	Lambert	88,{
    	callfunc "refinemain","Lambert",1;
    	end;
    }
    ein_in01,24,87,5	script	Manthasman	826,{
    	callfunc "refinemain","Manthasman Pruhag",1;
    	end;
    }
    lhz_in02,282,20,7	script	Fulerr	869,{
    	callfunc "refinemain","Fulerr",1;
    	end;
    }

     

    ooh thanks buddy!

  8. Been searching the script but I can't get where to enable it.

    Quote

    //============================================================

    //= Main Refiner Function

    //============================================================

    //= To allow auto safe refining/multiple refining set the

    //= second argument to '1' in the function call.

    //= If you enable this function, be sure to edit the value of

    //= [email protected] to the max safe refine in refine_db.txt as well.

    //============================================================

    https://github.com/rathena/rathena/blob/master/npc/merchants/refine.txt

    Thanks in advance.

  9. Gepard Shield costs

     

     

     

    $150 for the basic
     
    - check integrity memory of code section(game EXE)
    - check integrity of game exe
    - check integrity of dll in the client folder
    - encryption of network packets with dynamic key
    - protection against dll injection
    - protection against WPE/RPE/OpenKore
    - opportunity to get unique ID of player(based not on MAC)
    - opportunity to block player by unique ID
    - prevent run on virtual machines
    - search launched cheat software(OllyDbg, Cheat Engine, PotND, meth4u, xRag, xLike and other)
    - works with the last version of RCX
    - generates crash log
     
    and for additional features..
     
    - prevent emulation of mouse and keyboard (35$)
    - prevent use nodelay (35$)
    - prevent redefinition resouces in grf (35$)
     
    It is additional module which loads special GRF after loading GRFs from the DATA.INI. Gepard calculates hash of this GRF and send to the server. On the server side you can set legit hash. To this GRF you can put resources which you don't allow to override. For example sprites of the character. Gepard prevents attempts to load GRFs after loading special GRF.
     
    You can add him in skype. ( functor.x )

     

×
×
  • Create New...

Important Information

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