Jump to content

cahadeyelo

Members
  • Posts

    170
  • Joined

  • Last visited

Posts posted by cahadeyelo

  1. here's my mmo.h lines
     

    #ifndef PACKETVER
    //#define PACKETVER 20081126
    #define PACKETVER 20151029
    #endif
    // backward compatible PACKETVER 8 and 9
    #if PACKETVER == 8
    #undef PACKETVER
    #define PACKETVER 20070521
    #endif
    #if PACKETVER == 9
    #undef PACKETVER
    #define PACKETVER 20071106
    #endif
    

    and here's my packet_db.txt lines

    //Add new packets here.
    //2015-10-29aRagexeRE
    packet_ver: 32
    0x0369,7,actionrequest,2:6
    0x083c,10,useskilltoid,2:4:6
    0x0437,5,walktoxy,2
    0x035f,6,ticksend,2
    0x0202,5,changedir,2:4
    0x07e4,6,takeitem,2
    0x0362,6,dropitem,2:4
    0x07ec,8,movetokafra,2:4
    0x0364,8,movefromkafra,2:4
    0x0438,10,useskilltopos,2:4:6:8
    0x0366,90,useskilltoposmoreinfo,2:4:6:8:10
    0x096a,6,getcharnamerequest,2
    0x0368,6,solvecharname,2
    0x0838,12,searchstoreinfolistitemclick,2:6:10
    0x0835,2,searchstoreinfonextpage,0
    0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15
    0x0811,-1,reqtradebuyingstore,2:4:8:12
    0x0360,6,reqclickbuyingstore,2
    0x0817,2,reqclosebuyingstore,0
    0x0815,-1,reqopenbuyingstore,2:4:8:9:89
    0x0365,18,partybookingregisterreq,2:4
    0x0363,8 // CZ_JOIN_BATTLE_FIELD
    0x0281,-1,itemlistwindowselected,2:4:8
    0x022d,19,wanttoconnection,2:6:10:14:18
    0x0802,26,partyinvite2,2
    0x0436,4 // CZ_GANGSI_RANK
    0x023b,26,friendslistadd,2
    0x0361,5,hommenu,4
    0x0860,36,storagepassword,0
    
  2. I'm planning to increase the maximum hp on battle.c up to 900b but when i tried to recompile the server i always got this error.

     

    trunk\src\map\battle.c(7332): warning C4305: 'initializing' : truncation from '__int64' to 'int'

     

    my revision is 17726 of rathena trunk, please help....

  3. I'm planning to increase the maximum hp on battle.c up to 900b but when i tried to recompile the server i always got this error.

     

    trunk\src\map\battle.c(7332): warning C4305: 'initializing' : truncation from '__int64' to 'int'

     

    my revision is 17726 of rathena trunk, please help....

  4. thanks sir Enthr and benching for the answers and all the helped. I just found out than the cause of my last problem was my weapon ( angra manyu ), the server doesn't recognize the kill if angra manyu was the weapon of used.  /thx

  5. i got this script for my server but it seems like it didn't work

     

    -	script	mob_points	-1,{
    
    OnNPCKillEvent:
    	if( killedrid == 1313 ){
    	.@MPS = 1;
    	set MOBPOINTS,MOBPOINTS + .@MPS;
    	dispbottom "Gained : 1 Mob Point(s). Total : "+ MOBPOINTS +" Mob Point(s).";
    	end;
    	}
    }
    

    can someone please tell me why this script didn't work

×
×
  • Create New...