Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. http://www.eathena.ws/board/index.php?showtopic=244658
  2. CREATE TABLE IF NOT EXISTS `gvg` ( `guild_id` int(11) unsigned NOT NULL DEFAULT '0', `name` varchar(30) NOT NULL DEFAULT '', `deaths` smallint(4) unsigned NOT NULL default '0', ) ENGINE=MyISAM; CREATE TABLE IF NOT EXISTS `pvp` ( `char_id` int(11) unsigned NOT NULL DEFAULT '0', `name` varchar(30) NOT NULL DEFAULT '', `deaths` smallint(4) unsigned NOT NULL default '0', PRIMARY KEY (`char_id`) ) ENGINE=MyISAM;
  3. you mean auto detect what card in your inventory ? my script does... and to remove mvp card.. // MVP Card setarray .@CardLists,4342,4359,4357,4361,4363,4365,4367; just left it empty..or remove it.
  4. the default refiner support refine till 20 if you have edited the max_refine rate if you are using PRE-RE trunk/src/map/status.h #ifdef RENEWAL # define MAX_REFINE 20 #else # define MAX_REFINE 10 #endif make sure your db support up to +20 too.. trunk/db/re/refine_db.txt
  5. what mean ? elaborate more ? screenshot ? what cart ? did you update your KRO ? else change to other client.. 2012-04-10 2012-06-18 etc.... all latest cart are supported in rAthena for 2012 clients...
  6. diff your client to enable extra hairstyle / colour...i think there is already a diff plugin for 2012 client that enable 64k hairstyle / colours... check the WeeDiffGen topic in forums... and 2012 client support mount....
  7. 1. announce MVP when pawned OnNPCKillEvent: if( getmonsterinfo( killedrid,MOB_MVPEXP ) ) announce strcharinfo(0)+" killed "+getmonsterinfo( killedrid,MOB_NAME ),0; end; 2. verify castle + warp if( getcastledata( "prtg_cas01",1 ) == getcharid(2) ){ warp "prontera",155,181; } 3. search the forum...got a few examples for daily reward....
  8. you can try something like this.. OnInit: // monster list setarray .mob_list,1002,1004,1005; // amount need to kill setarray .mob_amount,10,20,30; // ignore these part .mob_size = getarraysize( .mob_list ); for( .@i = 0; .@i < .mob_size; .@i++ ) setd( ".mob_"+.mob_list[.@i] ),.mob_amount[.@i]; end; OnNPCKillEvent: // if monster are listed.. if( getd( ".mob_"+killedrid ) ){ // increase count.... setd( "kill_count_"+killedrid ),( getd( "kill_count_"+killedrid ) + 1 ); dispbottom "You killed "+getd( "kill_count_"+killedrid )+" / "+getd( ".mob_"+killedrid )+" "+getmonsterinfo( killedrid,MOB_NAME ); } end; i didnt test it....but should be look something like this... i remember last time in rA got a few topic discussed the same things too for mob hunting quests... try search for it...
  9. you dont need to remove the renewal settings since you just want to disable 3rd job..
  10. Emistry

    MySQL Error

    just like what the error mentioned.. you dont have the SQL table named cp_redeemlog
  11. trunk/npc/custom/jobmaster.txt set .ThirdClass,1; // Enable third classes? (1: yes / 0: no)
  12. http://rathena.org/board/topic/78767-card-effect-stack-limit/
  13. @TS i dunno what you want...i dont get it... is this something like this ? http://pastebin.com/raw.php?i=qYFz7jsh or what ?
  14. like this ? Untested ~ CREATE TABLE IF NOT EXISTS `pvp` ( `char_id` int(11) unsigned NOT NULL DEFAULT '0', `name` varchar(30) NOT NULL DEFAULT '', `deaths` smallint(4) unsigned NOT NULL default '0', PRIMARY KEY (`char_id`) ) ENGINE=MyISAM;
  15. OnNPCKillEvent: if( killedrid == 1002 ){ poring_count++; dispbottom "You killed "+poring_count+" Poring."; } end;
  16. where's your NPC header ? =='' i assume that you should know how to add a npc header... read Basic_Scripting
  17. only npc.. trunk/npc/custom/quests/hunting_missions.txt npc + quest db / clientside trunk/npc/pre-re/quests/collection/ and script release section also got a fews....
  18. disable the @main command... add this script OnPCLoginEvent: atcommand "@main on"; end;
  19. erm...have to ask Brian to update it since it's made by Brian but if i am not mistaken ...i asked Brian to update it last time...but i forget what he replied already xD
  20. http://rathena.sourceforge.net/tools/diff_patcher.php?client=2010-06-16aRagexeRE
  21. i think it's just that you dont know what have changed within RE and PRE-RE ..? Ant Egg isnt a "low" level monster for novice to leveling anymore in RE... http://ratemyserver.net/index.php?all_mob_select=%23&mob_id=1097&mob_name=&element=-1&race=-1&size=-1&mlvsn=0&mlv=&mlv2=&bxpsn=0&exp=&exp2=&jxpsn=0&jexp=&jexp2=&flee=&dr=95&hit=&hr=100&rgc=0&immu=0&mvp=0&minib=0&aggr=0&assi=0&sense=0&det=0&natk=0&immo=0&chcha=0&loot=0&chtar=0&plt=0&sort_r=0&sort_o=0&page=re_mob_db&f=1&mob_search=Search
  22. i think it's only appear in 2012 client...previous should be work fine with the kill amount.. or maybe 2012 need an updated lua files that support your custom quests.
  23. @loadnpc npc/warper.txt @loadnpc <npc path> it is the same inside here trunk/npc/scripts_custom.conf
×
×
  • Create New...