Jump to content

Kaito Kid

Members
  • Posts

    102
  • Joined

  • Last visited

Everything posted by Kaito Kid

  1. Is this full client ragnarok? (including rdata.grf)
  2. working no error with: unsigned short mapindex = 0; Thanks for advice
  3. I am sorry for my bad english.... I mean... after i follow steps from http://rathena.org/wiki/@go i got errors from skill.c
  4. Anyone know how to fixed this? I added 2 new costum map on mapindex.h then when compiling i got error like this skill.c error: case ECLAGE_RECALL: if( sd ) { short x, y; // Destiny position. unsigned short mapindex; << this line and one line below (but i think its not necessary because its blank line) if ( skill_id == RETURN_TO_ELDICASTES ) { x = 198; y = 187; mapindex = mapindex_name2id(MAP_DICASTES); } else if ( skill_id == ALL_GUARDIAN_RECALL ) { x = 44; y = 151; mapindex = mapindex_name2id(MAP_MORA); } else if ( skill_id == ECLAGE_RECALL ) { x = 47; y = 31; mapindex = mapindex_name2id("ecl_in01"); } if(!mapindex) { //Given map not found? clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); map_freeblock_unlock(); return 0; } pc_setpos(sd, mapindex, x, y, CLR_TELEPORT); } break; Thanks for advice
  5. Yes it's default to 20120410 there's one of my script have error/not compitable with latest svn problem's solved Forgot to say... thanks for advice
  6. yes... i am compile my server.... bump... change client and mmo into 2012-07-16aragexe same error... Solved... there is error from my script.... Installing new rathena.... thx for helping
  7. Yes... i already set my client version in my mmo.h server side error when trying to char select
  8. Please help me... I am using Rathena SVN Revision 17373 i am trying using http://rathena.org/board/topic/81747-2012-04-10aragexe-v3-booking-system/ but when clicking npc my player's got error then i am trying using 2012-04-17aragexe everything seem's fine... but when i am log out for character select.. i got error like this Thanks for helping
  9. sorry... can you help me.... i used your client and also edited my cliff.c and my packet.db like your said... But when My friend clicked NPC... they got stucked and got error like this
  10. Really cool..... and I really want it for my server... lol
  11. Try this... just modified it from Nibi script... 1 hour 3 TCG and for 12 hour cons 50 TCG //===== Hourly Points Script ========================================= //===== By: ========================================================== //= GorthexTiger modified by Nibi //===== Current Version: ============================================= //= 1.0 //===== Compatible With: ============================================= //= Any eAthena Version //===== Description: ================================================= //= Get Points every successful hours of gameplay, you cannot get //= the points even if you miss a second or a minute. A player will //= get a very big bonus if they played 12 hours consecutively //= or without logging out of the game. If the player is vending //= the script will then stop. //===== Additional Comments: ========================================= //= You can modify the script to your liking. //= The default points is Kafrapoints change it anyway if you like. //= 1.1 = Check Chatting too //= 1.2 = 5 Minute Idle Check & @at/@autotrade check. //= 1.3 = Corrected the current balance line on 12 Hours Consecutive //==================================================================== - script hourlypoints -1,{ //--Start of the Script OnPCLoginEvent: attachnpctimer ""+strcharinfo(0)+""; initnpctimer; end; OnTimer30000: //Check if Vending (normal or @at) if(checkvending() >= 1 || checkchatting() == 1) { dispbottom "The hourly points event stopped because you were vending / chatting. Please relog if you wish to start again."; stopnpctimer; end; } //Check if Idle getmapxy( .@map$, .@x, .@y, 0 ); if(@map$ == .@map$ && @x == .@x && @y == .@y) { set @afk, @afk + 1; } //If move timer resets else { set @afk, 0; } set @map$, .@map$; set @x, .@x; set @y, .@y; //Idle Check for 5 Minutes if(@afk == 5) { dispbottom "The hourly points event stopped because you were idle for 5 minutes. Please relog if you wish to start again."; stopnpctimer; end; } end; OnTimer60000: set @minute, @minute + 1; //Check for 1 Minute if(@minute == 60){ set @minute,0; set .@point_amt, 3; //Points to get every hour (default: 10) getitem 7227,.@point_amt; dispbottom "You received "+.@point_amt+" TCG by staying ingame for 1 hour"; set @consecutive_hour, @consecutive_hour + 1; } //Check for 12 hours consecutive if(@consecutive_hour == 12) { set @consecutive_hour,0; set .@cpoint_amt, 50; //Points to get for 12 Consecutive hours (default: 50) getitem 7227,.@point_amt; dispbottom "You received "+.@point_amt+" TCG in playing for 12 consecutive hours"; } stopnpctimer; initnpctimer; end; } //--End of the Script just use this and change the getitem 7227 to pods id Ref: http://rathena.org/board/topic/53999-hourly-tcg-reward/ Dont forget to remove this line
  12. it's working... i use for my server latest rathena... maybe u just forgot to add into script_costum.conf
  13. Kaito Kid

    Homunculus

    it happend too with my server... solution just deleted they homun and make a new homun ~_~
  14. use this mysql query UPDATE `homunculus` SET `level`='150' WHERE (`level`>='255') dunno for stat... coz it have different stat's
  15. Not working for latest rathena ~_~ I Realy wanted it... cos it realy usefull for map event
  16. sscanf(message, "%hd %hd %hd", --> sscanf(message, "%d %d %d", try it Nice.... it works great... and compile without warning thanks
  17. Got error too atcommand.c: In function âatcommand_autopotsâ: atcommand.c:8911: warning: format â%hdâ expects type âshort int *â, but argument 3 has type âint *â atcommand.c:8911: warning: format â%hdâ expects type âshort int *â, but argument 4 has type âint *â atcommand.c:8911: warning: format â%hdâ expects type âshort int *â, but argument 5 has type âint *â from this script: if (!message || !*message || sscanf(message, "%hd %hd %hd", &type, &rate, &nameid) < 3 || << this line ( type != 0 && type != 1 ) || ( rate < 1 || rate > 99 ) || ( itemdb_exists(nameid ) == NULL ) ) { Latest rathena and working.... but i want that messages wont showing when compiling thanks... nice work anyway
×
×
  • Create New...