Jump to content

masterzeus

Members
  • Posts

    46
  • Joined

  • Last visited

Posts posted by masterzeus

  1. On 2/19/2022 at 2:18 PM, Shakto said:
    /*==========================================
    * @jumptosell - warps to the cheapest shop.
    * Made by Vengence
    * Make it work for latest [Shakto]
    *------------------------------------------*/
    ACMD_FUNC(jumptosell)
    {
    	char item_name[100];
    	int item_id = 0, j, count = 0, sat_num = 0;
    	int s_type = 1; // search bitmask: 0-name,1-id, 2-card, 4-refine
    	int refine = 0,card_id = 0;
    	struct map_session_data* pl_sd;
    	struct map_session_data* pl_sd2;
    	struct s_mapiterator* iter;
    	unsigned int MinPrice = battle_config.vending_max_value, MaxPrice = 0;
    	nullpo_retr(-1, sd);
    
    	if (!message || !*message) {
    		clif_displaymessage(fd, "Use: @jumptosell (<+refine> )(<item_id>)(<[card_id]>) or @jumptosell <name>");
    		return -1;
    	}
    
    	if (sscanf(message, "+%d %d[%d]", &refine, &item_id, &card_id) == 3){
    		s_type = 1+2+4;
    	} else if (sscanf(message, "+%d %d", &refine, &item_id) == 2){
    		s_type = 1+4;
    	} else if (sscanf(message, "+%d [%d]", &refine, &card_id) == 2){
    		s_type = 2+4;
    	} else if (sscanf(message, "%d[%d]", &item_id, &card_id) == 2){
    		s_type = 1+2;
    	} else if (sscanf(message, "[%d]", &card_id) == 1){
    		s_type = 2;
    	} else if (sscanf(message, "+%d", &refine) == 1){
    		s_type = 4;
    	} else if (sscanf(message, "%d", &item_id) == 1 && item_id == atoi(message)){
    		s_type = 1;
    	} else if (sscanf(message, "%99[^\n]", item_name) == 1){
    		s_type = 1;
    		std::shared_ptr<item_data> id = item_db.searchname( item_name );
    
    		if( id == nullptr ){
    			clif_displaymessage(fd, "No item found with this name");
    			return -1;
    		}
    
    		item_id = id->nameid;
    	} else {
    		clif_displaymessage(fd, "Use: @jumptosell (<+refine> )(<item_id>)(<[card_id]>) or @jumptosell <name>");
    		return -1;
    	}
        
    	struct item_data *item_data;
    
    	//check card
    	if(s_type & 2 && ((item_data = itemdb_exists(card_id)) == NULL || item_data->type != IT_CARD)){
    		clif_displaymessage(fd, "Not found a card with than ID");
    		return -1;
    	}
    	//check item
    	if(s_type & 1 && (item_data = itemdb_exists(item_id)) == NULL){
    		clif_displaymessage(fd, "Not found an item with than ID");
    		return -1;
    	}
    	//check refine
    	if(s_type & 4){
    		if (refine<0 || refine>10){
    			clif_displaymessage(fd, "Refine out of bounds: 0 - 10");
    			return -1;
    		}
    		/*if(item_data->type != IT_WEAPON && item_data->type != IT_ARMOR){
    			clif_displaymessage(fd, "Use refine only with weapon or armor");
    			return -1;
    		}*/
    	}
    	iter = mapit_getallusers();
    	
    	for( pl_sd = (TBL_PC*)mapit_first(iter); mapit_exists(iter); pl_sd = (TBL_PC*)mapit_next(iter) )
    	{
    		if( pl_sd->vender_id ) //check if player is vending
    		{
    			for (j = 0; j < pl_sd->vend_num; j++) 
    			{
    				if((item_data = itemdb_exists(pl_sd->cart.u.items_cart[pl_sd->vending[j].index].nameid)) == NULL)
    					continue;
    				if(s_type & 1 && pl_sd->cart.u.items_cart[pl_sd->vending[j].index].nameid != item_id)
    					continue;
    				if(s_type & 2 && ((item_data->type != IT_ARMOR && item_data->type != IT_WEAPON) ||
    						(pl_sd->cart.u.items_cart[pl_sd->vending[j].index].card[0] != card_id &&
    						pl_sd->cart.u.items_cart[pl_sd->vending[j].index].card[1] != card_id &&
    						pl_sd->cart.u.items_cart[pl_sd->vending[j].index].card[2] != card_id &&
    						pl_sd->cart.u.items_cart[pl_sd->vending[j].index].card[3] != card_id)))
    					continue;
    				if(s_type & 4 && ((item_data->type != IT_ARMOR && item_data->type != IT_WEAPON) || pl_sd->cart.u.items_cart[pl_sd->vending[j].index].refine != refine))
    					continue;
    				if(pl_sd->vending[j].value < MinPrice){ 
    					MinPrice = pl_sd->vending[j].value;
    					pl_sd2 = pl_sd;
    				}
    				count++;
    			}
    		}
    	}
    	mapit_free(iter);
    
    	if(count > 0) {
    		pc_setpos(sd, pl_sd2->mapindex, pl_sd2->bl.x, pl_sd2->bl.y, CLR_TELEPORT);
    	} else
    		clif_displaymessage(fd, "Nobody is selling it now.");
    
    return 0;
    }

     

    Works fine ❤️
    Thanks

  2. 4 oct rAthena.
    with

    https://rathena.org/board/files/file/4312-mvp-and-mini-boss-card-ad-log-system/
    https://rathena.org/board/files/file/3860-extended-vending-20/
    
    https://github.com/rathena/rathena/commit/211f7ebb415f56cb59666f32e363fddec85ab4c8
    new Added a missing initialization (#6283)
    https://github.com/rathena/rathena/commit/1deb5a5f3e3dbb716b2ef9fe43e4c79df3518063
    new Added a check of the jexp value in quests_mora.txt (#6288)
    https://github.com/rathena/rathena/commit/586f5a123985a9065ead04fd7a641fb29a9e1b1b
    new Adds drop effect to dropped random option items (#6278)
    https://github.com/rathena/rathena/commit/9114083d7e2d35adb9effc9ac1053ff308cb066e
    new Small correction in SealedShrine.txt (#6287)
    https://github.com/rathena/rathena/commit/93c114416ca86cc7325ade14231c2132d584d4ed
    new Caps the item and mob display name length (#6293)
    https://github.com/rathena/rathena/commit/53e25aa4627c16e84cfa826393e8f7d797c7058e
    new Added a mapflag to block RODEX (#6291)
    https://github.com/rathena/rathena/commit/f9d4eeb4a1668133efcafa223e0d8d1abe5ba1e8
    new Fixed mail script command (#6294)
    https://github.com/rathena/rathena/commit/fe5c5d88695a7e495e20e7dfae4730626e8b6e5c
    new Fixed invalid purchase history (#6296)
    https://github.com/rathena/rathena/commit/58bc89d5db8ac9ffea7b3c8d57bc0306e0e31e6c
    new Added some additional SP heal bonuses (#6292)
    https://github.com/rathena/rathena/commit/d54076d2f608add05eef81f007de62f853495b48
    new Update getinventorylist - favorite field (#6302)
    https://github.com/rathena/rathena/commit/7a0233388a7ca82bd9ce626901cadb526f6e3908
    new Added a missing argument of getiteminfo script command in some script
    https://github.com/rathena/rathena/commit/e0c27fed034d2ec8711d793080fcbc3000732114
    new Removes the extra check in node["Drops"] (#6309)
    https://github.com/rathena/rathena/commit/e015832fa0bc84f9d650b356c786309b510d6d57
    new Fixed monster attack calculations (#6319)
    https://github.com/rathena/rathena/commit/36ca3bca05e19a0ee58d6c4cef9f25d6d7f4def9
    new Enable makeitem to display DropEffect (#6303)
    https://github.com/rathena/rathena/commit/2eebafb70330e37dd69a384ce0af52570b4956c2
    new Apply view_range_rate to mob's view range again. Fixes #6311 (#6326)
    https://github.com/rathena/rathena/commit/458def07848e39ddec372a257258b928f5dd63ce
    Fixed walking NPCs with monster sprites (#6325)
    https://github.com/rathena/rathena/commit/4b9c3e37f316bd22bb67c50fba9eb9fd55681bda
    new Fixed a mail weight check (#6342)
    https://github.com/rathena/rathena/commit/7277d47ab6a4461702ffcf9c13fdc296e498a068
    
    
    new Remove Maximum Power-Thrust buff on weapon unequip. Fixes #6277 (#6282)
    https://github.com/rathena/rathena/commit/eef8ef434a45564053a7253bbb2f42038c775558
    
    new @jumptosell command
    https://github.com/coookie1010/Server-Patches/blob/main/rA-jumptosell.diff
    
    
    
    new Removed Gospel buffs on logout
    https://github.com/rathena/rathena/commit/d8b554f1ad4c932ac51e2354eec1ed09bb54da0d
    
    new Fix missing condition for HW_GANBANTEIN (#6385)
    https://github.com/rathena/rathena/commit/4dfeff1ed3ca218c3d7d65ca5ef7e5731f6ea6f3
    
    new Fix SC_WINKCHARM behavior (#6384)
    https://github.com/rathena/rathena/commit/a028a74ae527ddee74449053b5b91b55f273b867



    Gepard shield src and Vykimo BG update.


    Screenshots:
    dxHRcZW.jpg

    DLqturI.png

     

     

  3. On 7/15/2021 at 11:57 AM, Mael said:

    Por lo que veo estas ocupando Gepard Shield. Deberías consultar con @Functor quizá tienes la limitación de 2 clientes.

    Existe un máximo de 3 clientes, o saldría otro tipo de error. 
    Ese Crash se genera por otra cosa y no me sucede a mi, le sucede a otra persona por lo que supongo que pueden ser archivos de Windows.

  4. Tengo un usuario que tiene un problema con el multi cliente, al abrir la tercera ventana del RO (intercambiando con alt + tab) se cierran los 2 primeros clientes dejando el 3ro abierto, dejando este log.
    Cliente: 2015-11-02.
    Alguien sabe que puede ser? 

     

    Spoiler

    Ragnarok has been crashed!

    UTC Time:       15/07/2021 00:36:35
    Local Time:     14/07/2021 20:36:35
    EXE version:    2015-11-02
    Gepard version: 2021052001

    OS version: Windows 10

    0x76488d4a msvcrt.dll
    0x6031e20c D3DIM700.DLL
    0x60324350 D3DIM700.DLL
    0x603215d6 D3DIM700.DLL
    0x04324b55 gepard.dll
    0x004233ac midgardro.exe
    0x0042431c midgardro.exe
    0x0088d6d7 midgardro.exe
    0x0065a26c midgardro.exe
    0x009925c6 midgardro.exe
    0x00994027 midgardro.exe
    0x77047a4e ntdll.dll
    0xffffffffffffffff ----------
    0x77068a22 ntdll.dll

    EAX: 0x1bd9c328 | 0467256104
    ECX: 0x00000020 | 0000000032
    EDX: 0x00000000 | 0000000000
    EBX: 0x00000000 | 0000000000
    ESI: 0x1bd9c2a8 | 0467255976
    EDI: 0x0ae90000 | 0183042048
    ESP: 0x0019f910 | 0001702160
    EBP: 0x0019f918 | 0001702168
    EIP: 0x76488d4a | 1984466250
    DR0: 0x00000000 | 0000000000
    DR1: 0x00000000 | 0000000000
    DR2: 0x00000000 | 0000000000
    DR3: 0x00000000 | 0000000000
    DR6: 0x00000000 | 0000000000
    DR7: 0x00000000 | 0000000000

    =============================================================================

    RST: 0
    SST: 0
    CST: 0
    TCI: 1

    TL1: 0
    TL2: 13
    TL3: 8

    SC_1: 0
    SC_2: 0
    SC_3: 0
    SC_4: 1
    SC_5: 0
    SC_6: 0

    PVF_1: 0
    PVF_2: 0
    PVF_3: 0
    PVF_4: 0
    PVF_5: 4200222
    EB: 0 0 0 0
    PID: 4472

    =================================== Stack ===================================
    0019f910:  00 00 e9 0a 20 a0 dc 0f 3c f9 19 00 0c e2 31 60           <     1`
    0019f920:  00 00 e9 0a a8 c2 d9 1b 80 00 00 00 20 a0 dc 0f                   
    0019f930:  50 41 32 60 20 a0 dc 0f 01 a0 dc 0f 94 f9 19 00   PA2`            
    0019f940:  50 43 32 60 a8 c2 d9 1b 20 a0 dc 0f 50 41 32 60   PC2`        PA2`
    0019f950:  01 00 00 00 00 00 3f 02 00 32 1e 00 ff bf a4 ab         ?  2      
    0019f960:  80 f9 19 00 20 a0 dc 0f 8b 00 00 00 c4 01 00 00                   
    0019f970:  00 00 00 08 ac f9 19 00 10 00 00 00 de b4 31 60                 1`
    0019f980:  01 00 00 00 ff 43 32 60 20 a0 dc 0f d0 43 32 60        C2`     C2`
    0019f990:  16 85 a7 52 c8 f9 19 00 d6 15 32 60 01 00 00 00      R      2`    
    0019f9a0:  4a 85 a7 52 60 ee 43 02 98 ff cf 1d 80 c2 d9 1b   J  R` C         
    0019f9b0:  2c cb 56 60 c8 95 31 01 a0 f9 19 00 60 fa 19 00   , V`  1     `   
    0019f9c0:  0d 5e 36 60 01 00 00 00 e8 f9 19 00 55 4b 32 04    ^6`        UK2 
    0019f9d0:  20 a0 dc 0f 05 00 00 00 c4 01 00 00 a8 c2 d9 1b                   
    0019f9e0:  04 00 00 00 00 00 00 00 18 fa 19 00 ac 33 42 00                3B 
    0019f9f0:  38 cd 23 05 05 00 00 00 c4 01 00 00 a8 c2 d9 1b   8 #             
    0019fa00:  04 00 00 00 00 00 00 00 60 ed 27 76 00 00 00 00           ` 'v    
    0019fa10:  60 ee 43 02 50 4f 95 1d 6c fa 19 00 1c 43 42 00   ` C PO  l    CB 
    0019fa20:  60 ee 43 02 54 31 42 00 b8 67 6d 05 1c da 88 00   ` C T1B  gm     
    0019fa30:  eb bc a4 ab 00 0f 48 75 b8 67 6d 05 60 ed 27 76         Hu gm ` 'v
    0019fa40:  ef 15 46 00 34 0d 64 0e de a1 48 00 eb bc a4 ab     F 4 d   H     
    0019fa50:  b8 67 6d 05 60 ed 27 76 60 72 ab 00 eb bc a4 ab    gm ` 'v`r      
    0019fa60:  a0 fa 19 00 6e ed a2 00 ff ff ff ff ac fa 19 00       n           
    0019fa70:  d7 d6 88 00 2b bc a4 ab d8 4d bc 00 a8 4d bc 00       +    M   M  
    0019fa80:  b0 4d bc 00 ac fa 19 00 ea c0 87 00 2b bc a4 ab    M          +   
    0019fa90:  d8 4d bc 00 a8 4d bc 00 2f bc a4 ab 2b bc a4 ab    M   M  /   +   
    INIT: 16 : 1a : 0

    VSYNC: 1

    LL/LLD: 8c/b4

    FM: a5ad04
    TM: ff0380

    LID: d5e
    PMU: 5a414
    CMU: 5a3f0

    =============================================================================

    Loaded GRFs:

    [0] gepard.grf
    [1] hdata.grf
    [2] style.grf
    [3] data.grf

    =============================================================================

    Network packet's statistic:

    s_bytes: 277 bytes
    r_bytes: 9 Kbytes

    s_packets ->: 21
    r_packets <-: 199

    00# -> 870809938e06 [297 ms]
    01# <- 7f003b629220 [1094 ms]
    02# <- d7001e0009938e06d77713000000010003507650205b302055736572735d [1219 ms]
    03# <- d800c3771300 [1219 ms]
    04# -> 86082aec5301 [1234 ms]
    05# <- d7002200f0928e06c87713000000010003546f74616c20416e756e63696f733a2030 [1828 ms]
    06# <- d80058771300 [1828 ms]
    07# <- d7001e0009938e06c37713000000010003507650205b302055736572735d [2203 ms]
    08# <- d80090771300 [2203 ms]
    09# <- fb00a600736664736466640000000000000000000000000000000000fb841e005372205461746163686f000000000000000000000000000065696e626563682e67617400000000000001fa841e00527570696c696e6b0000000000000000000000000000000065696e626563682e67617400000000000100f9841e004d657265647900000000000000000000000000000000000065696e626563682e67617400000000000100 [2406 ms]
    10# <- 8309a000fa841e00010f2700000f270000000000000000000000000000 [2406 ms]
    11# <- 0e08fa841e002c0c00002c0c0000 [2406 ms]
    12# <- 0701fa841e00c8007800 [2406 ms]
    13# <- e901fa841e0001000000c800780001736664736466640000000000000000000000000000000000527570696c696e6b0000000000000000000000000000000065696e626563682e67617400000000000101 [2406 ms]
    14# <- d701fa841e000776000000 [2406 ms]
    15# <- fe09570000fa841e00bf950200960000000000000000000800060048063708bc001f01000008007600000000000000000000000000000000000001320780050551000000ffffffffffffffff000000527570696c696e6b [2406 ms]
    16# <- d701fa841e000248063708 [2406 ms]
    17# <- 0e08fa841e002c0c00002c0c0000 [3140 ms]
    18# <- d7001e0009938e06907713000000010003507650205b302055736572735d [3219 ms]
    19# <- d80075771300 [3219 ms]
    20# <- d7001e0009938e06757713000000010003507650205b302055736572735d [4234 ms]
    21# <- d80040771300 [4234 ms]
    22# <- d7002200f0928e06587713000000010003546f74616c20416e756e63696f733a2030 [4828 ms]
    23# <- d800e4761300 [4828 ms]
    24# <- b60028918e06 [5140 ms]
    25# <- d7001e0009938e06407713000000010003507650205b302055736572735d [5234 ms]
    26# <- d80019771300 [5234 ms]
    27# <- d7001e0009938e06197713000000010003507650205b302055736572735d [6234 ms]
    28# <- d800f3761300 [6234 ms]
    29# <- d7001e0009938e06f37613000000010003507650205b302055736572735d [7250 ms]
    30# <- d800c9761300 [7250 ms]

    =============================================================================

    00# [ OK ] palette\머리\머리3_남_8.pal [2359 ms]
    01# [ OK ] palette\몸\프리스트_남_118.pal [2359 ms]
    02# [ OK ] imf\프리스트_남.imf [2375 ms]
    03# [ OK ] wav\effect\ef_portal.wav [2375 ms]
    04# [ OK ] sprite\방패\프리스트\프리스트_남_버클러.spr [2375 ms]
    05# [ OK ] sprite\방패\프리스트\프리스트_남_버클러.act [2375 ms]
    06# [ OK ] sprite\악세사리\남\남_귀마개모자.spr [2375 ms]
    07# [ OK ] sprite\악세사리\남\남_귀마개모자.act [2375 ms]
    08# [ OK ] sprite\악세사리\남\남_토스트.spr [2375 ms]
    09# [ OK ] sprite\악세사리\남\남_토스트.act [2375 ms]
    10# [ OK ] sprite\인간족\프리스트\프리스트_남_롯드.spr [2375 ms]
    11# [ OK ] sprite\인간족\프리스트\프리스트_남_롯드.act [2375 ms]
    12# [ OK ] sprite\인간족\머리통\남\3_남.spr [2375 ms]
    13# [ OK ] sprite\인간족\머리통\남\3_남.act [2375 ms]
    14# [ OK ] sprite\인간족\몸통\남\프리스트_남.spr [2390 ms]
    15# [ OK ] sprite\인간족\몸통\남\프리스트_남.act [2390 ms]
    16# [ OK ] texture\유저인터페이스\basic_interface\dialscr_down.bmp [17859 ms]
    17# [ OK ] texture\유저인터페이스\basic_interface\dialscr_up.bmp [17859 ms]
    18# [ OK ] texture\effect\ring_blue.tga [22500 ms]
    19# [ OK ] sprite\이팩트\particle1.act [22500 ms]
    20# [ OK ] sprite\이팩트\particle1.spr [22500 ms]
    21# [ OK ] texture\effect\alpha_down.tga [22500 ms]
    22# [ OK ] ..\_tmpEmblem\midgard_267_14.ebm [22531 ms]
    23# [ OK ] texture\워터\water331.jpg [23297 ms]
    24# [ OK ] texture\워터\water330.jpg [23359 ms]
    25# [ OK ] texture\워터\water329.jpg [23422 ms]
    26# [ OK ] texture\워터\water328.jpg [23484 ms]
    27# [ OK ] texture\워터\water327.jpg [23547 ms]
    28# [ OK ] texture\워터\water326.jpg [23609 ms]
    29# [ OK ] texture\워터\water325.jpg [23672 ms]
    30# [ OK ] texture\워터\water324.jpg [23734 ms]

    =============================================================================

    00000002 
    00000001 ..\ftwrk.lex
    00000001 C:\Users\z\Documents\midgard\ProhibitionLog.gd

    =============================================================================

    0x00400000   0x01d6a000   C:\Users\z\Documents\midgard\midgardro.exe
    0x76fe0000   0x001a3000   C:\WINDOWS\SYSTEM32\ntdll.dll
    0x75460000   0x000f0000   C:\WINDOWS\System32\KERNEL32.DLL
    0x755c0000   0x00214000   C:\WINDOWS\System32\KERNELBASE.dll
    0x62b70000   0x0009f000   C:\WINDOWS\SYSTEM32\apphelp.dll
    0x605e0000   0x00284000   C:\WINDOWS\SYSTEM32\AcLayers.DLL
    0x76400000   0x000bf000   C:\WINDOWS\System32\msvcrt.dll
    0x76200000   0x00196000   C:\WINDOWS\System32\USER32.dll
    0x761e0000   0x00018000   C:\WINDOWS\System32\win32u.dll
    0x766c0000   0x00023000   C:\WINDOWS\System32\GDI32.dll
    0x768f0000   0x000dc000   C:\WINDOWS\System32\gdi32full.dll
    0x75100000   0x0007b000   C:\WINDOWS\System32\msvcp_win.dll
    0x75250000   0x00120000   C:\WINDOWS\System32\ucrtbase.dll
    0x75c20000   0x005b3000   C:\WINDOWS\System32\SHELL32.dll
    0x76590000   0x00045000   C:\WINDOWS\System32\SHLWAPI.dll
    0x75860000   0x00096000   C:\WINDOWS\System32\OLEAUT32.dll
    0x75900000   0x00281000   C:\WINDOWS\System32\combase.dll
    0x75190000   0x000bf000   C:\WINDOWS\System32\RPCRT4.dll
    0x76b90000   0x00435000   C:\WINDOWS\System32\SETUPAPI.dll
    0x750b0000   0x0003b000   C:\WINDOWS\System32\cfgmgr32.dll
    0x76570000   0x00019000   C:\WINDOWS\System32\bcrypt.dll
    0x74ac0000   0x00019000   C:\WINDOWS\SYSTEM32\MPR.dll
    0x66680000   0x00003000   C:\WINDOWS\SYSTEM32\sfc.dll
    0x74e10000   0x0006d000   C:\WINDOWS\SYSTEM32\WINSPOOL.DRV
    0x62150000   0x0000f000   C:\WINDOWS\SYSTEM32\sfc_os.DLL
    0x620d0000   0x0000f000   C:\WINDOWS\SYSTEM32\SortWindows61.dll
    0x76ae0000   0x00025000   C:\WINDOWS\System32\IMM32.DLL
    0x76b10000   0x0007a000   C:\WINDOWS\System32\ADVAPI32.dll
    0x766f0000   0x00075000   C:\WINDOWS\System32\sechost.dll
    0x604f0000   0x000e9000   C:\WINDOWS\SYSTEM32\DDRAW.dll
    0x740c0000   0x00032000   C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
    0x60460000   0x00085000   C:\Users\z\Documents\midgard\MSVCP110.dll
    0x75550000   0x00063000   C:\WINDOWS\System32\WS2_32.dll
    0x76800000   0x000e3000   C:\WINDOWS\System32\ole32.dll
    0x60380000   0x000d6000   C:\Users\z\Documents\midgard\MSVCR110.dll
    0x73750000   0x0000f000   C:\WINDOWS\SYSTEM32\kernel.appcore.dll
    0x72580000   0x000c3000   C:\WINDOWS\SYSTEM32\dxgi.dll
    0x61820000   0x00007000   C:\WINDOWS\SYSTEM32\DCIMAN32.dll
    0x74aa0000   0x00013000   C:\WINDOWS\SYSTEM32\NETAPI32.dll
    0x736b0000   0x00028000   C:\WINDOWS\SYSTEM32\winmm.dll
    0x30000000   0x0006d000   C:\Users\z\Documents\midgard\binkw32.dll
    0x10000000   0x00015000   C:\Users\z\Documents\midgard\cps.dll
    0x60000000   0x0005d000   C:\Users\z\Documents\midgard\ijl15.dll
    0x21100000   0x0005e000   C:\Users\z\Documents\midgard\mss32.dll
    0x02350000   0x00007000   C:\Users\z\Documents\midgard\DINPUT.dll
    0x02360000   0x0005d000   C:\Users\z\Documents\midgard\granny2.dll
    0x042a0000   0x00afc000   C:\Users\z\Documents\midgard\gepard.dll
    0x767f0000   0x00006000   C:\WINDOWS\System32\PSAPI.DLL
    0x749f0000   0x0008d000   C:\WINDOWS\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.19041.1110_none_c0da534e38c01f4d\COMCTL32.dll
    0x74c40000   0x0000f000   C:\WINDOWS\SYSTEM32\WTSAPI32.dll
    0x73f30000   0x00188000   C:\WINDOWS\SYSTEM32\dbghelp.dll
    0x6d580000   0x0045a000   C:\WINDOWS\SYSTEM32\WININET.dll
    0x62930000   0x00008000   C:\WINDOWS\SYSTEM32\FLTLIB.DLL
    0x74e80000   0x00008000   C:\WINDOWS\SYSTEM32\VERSION.dll
    0x73560000   0x00074000   C:\WINDOWS\system32\uxtheme.dll
    0x765e0000   0x000d4000   C:\WINDOWS\System32\MSCTF.dll
    0x618d0000   0x0006c000   C:\Program Files (x86)\TeamViewer\tv_w32.dll
    0x75370000   0x0005f000   C:\WINDOWS\System32\bcryptPrimitives.dll
    0x73260000   0x000b9000   C:\WINDOWS\SYSTEM32\textinputframework.dll
    0x731c0000   0x0009b000   C:\WINDOWS\System32\CoreMessaging.dll
    0x72f40000   0x0027e000   C:\WINDOWS\System32\CoreUIComponents.dll
    0x75b90000   0x00087000   C:\WINDOWS\System32\SHCORE.dll
    0x72e60000   0x000db000   C:\WINDOWS\SYSTEM32\wintypes.dll
    0x74de0000   0x00029000   C:\WINDOWS\SYSTEM32\ntmarta.dll
    0x75180000   0x00007000   C:\WINDOWS\System32\NSI.dll
    0x73ba0000   0x00016000   C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
    0x6e9e0000   0x0002c000   C:\WINDOWS\SYSTEM32\dxcore.dll
    0x74170000   0x00052000   C:\WINDOWS\system32\mswsock.dll
    0x72a10000   0x00047000   C:\WINDOWS\SYSTEM32\WINSTA.dll
    0x0cb20000   0x0002a000   C:\Users\z\Documents\midgard\Mp3dec.asi
    0x06b00000   0x00016000   C:\Users\z\Documents\midgard\Mssfast.m3d
    0x62c60000   0x0007f000   C:\WINDOWS\SYSTEM32\DSOUND.DLL
    0x73760000   0x00044000   C:\WINDOWS\SYSTEM32\powrprof.dll
    0x6c080000   0x0001d000   C:\WINDOWS\SYSTEM32\winmmbase.dll
    0x73b60000   0x0000d000   C:\WINDOWS\SYSTEM32\UMPDC.dll
    0x76770000   0x0007e000   C:\WINDOWS\System32\clbcatq.dll
    0x729a0000   0x0006b000   C:\WINDOWS\System32\MMDevApi.dll
    0x74db0000   0x00024000   C:\WINDOWS\System32\DEVOBJ.dll
    0x6c730000   0x00136000   C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
    0x6c5b0000   0x0000f000   C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll
    0x72d60000   0x000f3000   C:\Windows\System32\Windows.UI.dll
    0x72bf0000   0x000ed000   C:\Windows\System32\InputHost.dll
    0x72ce0000   0x00073000   C:\Windows\System32\WindowManagementAPI.dll
    0x735e0000   0x000c2000   C:\Windows\System32\PROPSYS.dll
    0x72a60000   0x0018f000   C:\WINDOWS\SYSTEM32\twinapi.appcore.dll
    0x6a960000   0x00008000   C:\WINDOWS\SYSTEM32\avrt.dll
    0x704c0000   0x0016b000   C:\WINDOWS\System32\DriverStore\FileRepository\u0369070.inf_amd64_f201604fbb8aca98\B369060\aticfx32.dll
    0x5dcb0000   0x019fa000   C:\WINDOWS\System32\DriverStore\FileRepository\u0369070.inf_amd64_f201604fbb8aca98\B369060\amdxn32.dll
    0x6ea10000   0x00027000   C:\WINDOWS\SYSTEM32\amdihk32.dll
    0x60310000   0x00063000   C:\WINDOWS\SYSTEM32\D3DIM700.DLL
    0x736f0000   0x00026000   C:\WINDOWS\SYSTEM32\dwmapi.dll
    0x74150000   0x00011000   C:\WINDOWS\system32\napinsp.dll
    0x74130000   0x00016000   C:\WINDOWS\system32\pnrpnsp.dll
    0x74120000   0x00010000   C:\WINDOWS\system32\wshbth.dll
    0x74100000   0x00016000   C:\WINDOWS\system32\NLAapi.dll
    0x73e60000   0x00092000   C:\WINDOWS\SYSTEM32\DNSAPI.dll
    0x73e50000   0x0000e000   C:\WINDOWS\System32\winrnr.dll
    0x73df0000   0x00058000   C:\WINDOWS\System32\fwpuclnt.dll
    0x73de0000   0x00008000   C:\Windows\System32\rasadhlp.dll
    0x73b70000   0x00021000   C:\WINDOWS\SYSTEM32\SspiCli.dll
    0x6a650000   0x0000d000   C:\WINDOWS\system32\wbem\wbemprox.dll
    0x69860000   0x00072000   C:\WINDOWS\SYSTEM32\wbemcomn.dll
    0x6a640000   0x00010000   C:\WINDOWS\system32\wbem\wbemsvc.dll
    0x671e0000   0x000c9000   C:\WINDOWS\system32\wbem\fastprox.dll
    0x6a250000   0x00012000   C:\WINDOWS\SYSTEM32\amsi.dll
    0x74c10000   0x00025000   C:\WINDOWS\SYSTEM32\USERENV.dll
    0x742a0000   0x00018000   C:\WINDOWS\SYSTEM32\profapi.dll
    0x69710000   0x0006b000   C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.2106.6-0\X86\MpOav.dll
     

     

  5. Hello everyone, I have a little doubt.
    I use my emulator in pre-renewal mode but a user has reported something unusual to me but I really don't understand if it is an error or it works like this.

    I leave a video of the "supposed result" of the dual dagger. This video is from iRo Loki.
    With Ice Pick Quad and 4 Dranlair Main Guiche




    This video is of the operation of my server (rAthena)
     

    It looks like the damage is less and it hits 1. This happens with that order of weapons and also with the opposite. (Ice pick or MainGaunche left or right, same result)

    Could you tell me if this is a bug or does it work this way?

     

  6. 2 hours ago, Kreustoo said:

    Hello,

    On some crash there's some [FAIL] with the error, you can at least fix them, adding the missing files in your client.

    Yes, i can fix the second and third log, but the first one I don't know what it is.

  7. What can these crashes be?

    1.-

    Spoiler

    Ragnarok has been crashed!

    UTC Time:       04/07/2020 02:33:35
    Local Time:     03/07/2020 21:33:35
    EXE version:    2015-11-02
    Gepard version: 2020052901

    OS version: Windows 10

    0x0089220f midgardro.exe
    0x008a4f2f midgardro.exe
    0x00621876 midgardro.exe
    0x00620c28 midgardro.exe
    0x0062166a midgardro.exe
    0x00991a99 midgardro.exe
    0x771944bb USER32.dll
    0x77174ffc USER32.dll
    0x7717414e USER32.dll
    0x7718e8b0 USER32.dll
    0x00990202 midgardro.exe
    0x0064f7a0 midgardro.exe
    0x0088bed9 midgardro.exe
    0x0065a264 midgardro.exe
    0x009925c6 midgardro.exe

    EAX: 0x00000000 | 0000000000
    ECX: 0x0000006d | 0000000109
    EDX: 0x00000000 | 0000000000
    EBX: 0x47b54a10 | 1203063312
    ESI: 0x0019f41c | 0001700892
    EDI: 0x00000000 | 0000000000
    ESP: 0x0019d6c8 | 0001693384
    EBP: 0x0019dd84 | 0001695108
    EIP: 0x0089220f | 0008987151
    DR0: 0x00000000 | 0000000000
    DR1: 0x00000000 | 0000000000
    DR2: 0x00000000 | 0000000000
    DR3: 0x00000000 | 0000000000
    DR6: 0x00000000 | 0000000000
    DR7: 0x00000000 | 0000000000

    =============================================================================

    RST: 0
    SST: 0
    CST: 0
    TCI: 1

    TL1: 0
    TL2: 28
    TL3: 0

    =================================== Stack ===================================
    0019d6c8:  00 00 00 00 2b 54 91 07 10 4a b5 47 2a 00 00 00       +T   J G*   
    0019d6d8:  6d 00 00 00 47 1f 1d ff 49 20 1d ff 4b 21 1f ff   m   G   I   K!  
    0019d6e8:  4e 22 20 ff 50 23 21 ff 4e 22 20 ff 50 23 21 ff   N"  P#! N"  P#! 
    0019d6f8:  1c f4 19 00 52 25 23 ff 53 26 23 ff 54 26 24 ff       R%# S&# T&$ 
    0019d708:  57 27 25 ff 59 28 25 ff 57 27 25 ff 59 28 25 ff   W'% Y(% W'% Y(% 
    0019d718:  00 27 23 ff 5b 27 24 ff 5c 29 24 ff 5c 28 23 ff    '# ['$ \)$ \(# 
    0019d728:  00 00 00 00 0f 00 00 00 00 27 22 ff 5d 26 21 ff            '" ]&! 
    0019d738:  5d 26 21 ff 5e 25 20 ff 00 00 00 00 0f 00 00 00   ]&! ^%          
    0019d748:  00 22 1d ff 5e 21 1c ff 5e 22 1d ff 5e 21 1c ff    "  ^!  ^"  ^!  
    0019d758:  00 00 00 00 0f 00 00 00 5d 1e 18 ff 5c 1d 17 ff           ]   \   
    0019d768:  5b 1a 16 ff 5a 1a 14 ff 5b 1a 16 ff 5a 1a 14 ff   [   Z   [   Z   
    0019d778:  59 19 13 ff 57 17 11 ff 57 16 10 ff 57 14 0f ff   Y   W   W   W   
    0019d788:  56 13 0e ff 54 12 0d ff 56 13 0e ff 54 12 0d ff   V   T   V   T   
    0019d798:  53 11 0c ff 51 0f 0b ff 4f 0e 0a ff 4e 0d 09 ff   S   Q   O   N   
    0019d7a8:  4b 0b 08 ff 4b 0c 08 ff 4b 0b 08 ff 4b 0c 08 ff   K   K   K   K   
    0019d7b8:  4a 0b 07 ff 4a 0b 07 ff 49 0c 06 ff 48 0d 07 ff   J   J   I   H   
    0019d7c8:  48 0e 07 ff 47 0f 07 ff 48 0e 07 ff 47 0f 07 ff   H   G   H   G   
    0019d7d8:  47 10 08 ff 46 11 08 ff 46 12 07 ff 46 12 08 ff   G   F   F   F   
    0019d7e8:  45 14 08 ff 45 15 08 ff 58 18 0a ff 58 1a 0a ff   E   E   X   X   
    0019d7f8:  59 1b 0b ff 5a 1d 0b ff 5b 1f 0b ff 5c 20 0b ff   Y   Z   [   \   
    0019d808:  5d 22 0b ff 60 24 0c ff 5d 22 0b ff 60 24 0c ff   ]"  `$  ]"  `$  
    0019d818:  62 26 0c ff 64 28 0c ff 66 2b 0d ff 68 2c 0e ff   b&  d(  f+  h,  
    0019d828:  6b 2f 10 ff 6d 33 11 ff 6b 2f 10 ff 6d 33 11 ff   k/  m3  k/  m3  
    0019d838:  6f 37 11 ff 74 3a 14 ff 76 3f 16 ff 79 45 18 ff   o7  t:  v?  yE  
    0019d848:  7c 49 19 ff 7f 4d 1b ff 7c 49 19 ff 7f 4d 1b ff   |I   M  |I   M  
    INIT: 15 : 17 : 0

    VSYNC: 0

    LL/LLD: 125/14b

    FM: 6c0f58
    TM: be31e4

    PMU: 69b18
    CMU: 4ea98

    =============================================================================

    Loaded GRFs:

    [0] gepard.grf
    [1] hdata.grf
    [2] hstyle.grf
    [3] data.grf

    =============================================================================

    Network packet's statistic:

    s_bytes: 92 Kbytes
    r_bytes: 5 Mbytes

    s_packets ->: 7729
    r_packets <-: 223596

    00# <- 91007468615f7431302e67617400000000009b006400 [1750 ms]
    01# <- 87005ccb332c2e0a72dca688 [1859 ms]
    02# -> 63032dca60 [1984 ms]
    03# <- 070197a21e00bb00a300 [2078 ms]
    04# <- 0701aca21e00bb00a300 [2078 ms]
    05# <- 0701cba51e00bb00a300 [2078 ms]
    06# -> 3c080500080096a21e00 [2312 ms]
    07# <- 870071c9332c2e4a82e0a788 [2344 ms]
    08# <- 8a00cba51e0000001df54600000000000300000000000000d500020000 [2453 ms]
    09# <- 83096e02cba51e00010f2700000f270000000000000000000000000000 [2453 ms]
    10# -> 63032e0a70 [2469 ms]
    11# <- 9601090092a11e0000 [2703 ms]
    12# <- 96010900cba51e0000 [2703 ms]
    13# <- 96010900aca21e0000 [2703 ms]
    14# <- 96010900d9a01e0000 [2703 ms]
    15# <- b0002e006c000000 [2703 ms]
    16# <- 9601090096a21e0000 [2703 ms]
    17# <- 9601090065a81e0000 [2703 ms]
    18# <- 9601090004a31e0000 [2703 ms]
    19# <- 9601090068ab1e0000 [2703 ms]
    20# <- 96010900b79f1e0000 [2703 ms]
    21# <- 9601090097a21e0000 [2703 ms]
    22# <- d701aca21e000751000000 [2812 ms]
    23# <- fd095e0000aca21e00a178020078000000200000000000ab0f030000000000000094c7332c0000000009005100000000008b000000010000000000000000012eca42eca388050561000000ffffffffffffffff0000004d656c696f646173 [2812 ms]
    24# <- fd0964000097a21e00b878020078000000200000000000b40f030076070000080083c7332c0000000000000000000000008b000000010000000000000000012eca42eca388050562000000ffffffffffffffff0000005465546f636f4775697461727261 [2828 ms]
    25# -> 3c080500080096a21e00 [2953 ms]
    26# <- cb0969010500000096a21e0092a11e0001 [3094 ms]
    27# <- 83096e0096a21e0001a0860100a0860100010000000000000000000000 [3094 ms]
    28# <- 83092e0092a11e0001dc050000dc050000000000000000000000000000 [3094 ms]
    29# <- d701cba51e000742010000 [3141 ms]
    30# <- fd095a0000cba51e00477e020078000000200010000000ac0f1c00c6060000160257c6332c4800530010004201000000008b000000010000000000000000002eca42eca388050562000000ffffffffffffffff000000536b7979 [3141 ms]

    =============================================================================

    00# [ OK ] texture\기타마을내부\tn_in015.bmp [1062 ms]
    01# [ OK ] texture\기타마을내부\tn_in405.bmp [1062 ms]
    02# [ OK ] texture\기타마을내부\tn_in402.bmp [1062 ms]
    03# [ OK ] texture\기타마을내부\tn_in007.bmp [1062 ms]
    04# [ OK ] texture\backside.bmp [1062 ms]
    05# [ OK ] tha_t10.gnd [1078 ms]
    06# [ OK ] tha_t10.gat [1078 ms]
    07# [ OK ] tha_t10.rsw [1078 ms]
    08# [ OK ] texture\유저인터페이스\loading06.jpg [1125 ms]
    09# [ OK ] texture\effect\icon05.tga [3094 ms]
    10# [ OK ] texture\effect\agi_up.bmp [5469 ms]
    11# [ OK ] wav\effect\ef_incagility.wav [5469 ms]
    12# [ OK ] texture\effect\lockon128.tga [5719 ms]
    13# [ OK ] texture\effect\endure.tga [10844 ms]
    14# [ OK ] wav\effect\ef_endure.wav [10844 ms]
    15# [ OK ] texture\effect\인듀어.tga [10844 ms]
    16# [ OK ] wav\effect\아숨프티오.wav [37531 ms]
    17# [ OK ] texture\effect\asum.str [37531 ms]
    18# [ OK ] texture\effect\ring_white.tga [38187 ms]
    19# [ OK ] texture\유저인터페이스\basic_interface\new_item.bmp [40516 ms]
    20# [ OK ] texture\effect\pok3.tga [43078 ms]
    21# [ OK ] texture\effect\pok1.tga [43078 ms]
    22# [ OK ] wav\_heal_effect.wav [43078 ms]
    23# [ OK ] texture\effect\앉기.tga [50500 ms]
    24# [ OK ] sprite\아이템\맛좋은물고기.act [53484 ms]
    25# [ OK ] sprite\아이템\맛좋은물고기.spr [53484 ms]
    26# [ OK ] wav\effect\priest_magnificat.wav [60391 ms]
    27# [ OK ] texture\effect\magnificat.str [60391 ms]
    28# [ OK ] texture\effect\ring_yellow.tga [61281 ms]
    29# [ OK ] wav\effect\ef_beginspell.wav [61281 ms]
    30# [ OK ] wav\effect\당신을 위한 서비스.wav [65547 ms]

    =============================================================================

    00000001 
    00000001 ..\ftwrk.lex
    00000001 C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\ProhibitionLog.gd

    =============================================================================

    0x00400000   0x01d63000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\midgardro.exe
    0x77300000   0x0019a000   C:\WINDOWS\SYSTEM32\ntdll.dll
    0x75090000   0x000e0000   C:\WINDOWS\System32\KERNEL32.DLL
    0x75e70000   0x001fe000   C:\WINDOWS\System32\KERNELBASE.dll
    0x72160000   0x0009f000   C:\WINDOWS\SYSTEM32\apphelp.dll
    0x76070000   0x00079000   C:\WINDOWS\System32\ADVAPI32.dll
    0x74dd0000   0x000bf000   C:\WINDOWS\System32\msvcrt.dll
    0x76790000   0x00076000   C:\WINDOWS\System32\sechost.dll
    0x75db0000   0x000bb000   C:\WINDOWS\System32\RPCRT4.dll
    0x74ad0000   0x00020000   C:\WINDOWS\System32\SspiCli.dll
    0x74ac0000   0x0000a000   C:\WINDOWS\System32\CRYPTBASE.dll
    0x75240000   0x0005f000   C:\WINDOWS\System32\bcryptPrimitives.dll
    0x76ec0000   0x00021000   C:\WINDOWS\System32\GDI32.dll
    0x76e40000   0x00017000   C:\WINDOWS\System32\win32u.dll
    0x74e90000   0x0015b000   C:\WINDOWS\System32\gdi32full.dll
    0x76c50000   0x0007c000   C:\WINDOWS\System32\msvcp_win.dll
    0x71b70000   0x000ea000   C:\WINDOWS\SYSTEM32\DDRAW.dll
    0x76670000   0x0011f000   C:\WINDOWS\System32\ucrtbase.dll
    0x77150000   0x00197000   C:\WINDOWS\System32\USER32.dll
    0x75210000   0x00025000   C:\WINDOWS\System32\IMM32.DLL
    0x71aa0000   0x000c1000   C:\WINDOWS\SYSTEM32\dxgi.dll
    0x72e10000   0x00007000   C:\WINDOWS\SYSTEM32\DCIMAN32.dll
    0x74a50000   0x00032000   C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
    0x6e580000   0x00085000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\MSVCP110.dll
    0x74ff0000   0x00092000   C:\WINDOWS\System32\oleaut32.dll
    0x76870000   0x00275000   C:\WINDOWS\System32\combase.dll
    0x760f0000   0x00579000   C:\WINDOWS\System32\SHELL32.dll
    0x757a0000   0x0003b000   C:\WINDOWS\System32\cfgmgr32.dll
    0x75180000   0x00084000   C:\WINDOWS\System32\shcore.dll
    0x757e0000   0x005c6000   C:\WINDOWS\System32\windows.storage.dll
    0x74bf0000   0x0001b000   C:\WINDOWS\System32\profapi.dll
    0x76f50000   0x00043000   C:\WINDOWS\System32\powrprof.dll
    0x75170000   0x0000d000   C:\WINDOWS\System32\UMPDC.dll
    0x76820000   0x00044000   C:\WINDOWS\System32\shlwapi.dll
    0x76810000   0x0000f000   C:\WINDOWS\System32\kernel.appcore.dll
    0x74c10000   0x00013000   C:\WINDOWS\System32\cryptsp.dll
    0x6e4a0000   0x000d6000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\MSVCR110.dll
    0x74c50000   0x0005e000   C:\WINDOWS\System32\WS2_32.dll
    0x74af0000   0x000f7000   C:\WINDOWS\System32\ole32.dll
    0x74aa0000   0x00013000   C:\WINDOWS\SYSTEM32\NETAPI32.dll
    0x73240000   0x00024000   C:\WINDOWS\SYSTEM32\winmm.dll
    0x72310000   0x00035000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\binkw32.dll
    0x10000000   0x00015000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\cps.dll
    0x60000000   0x0005d000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\ijl15.dll
    0x21100000   0x0005e000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\mss32.dll
    0x6dce0000   0x00019000   C:\WINDOWS\SYSTEM32\dxcore.dll
    0x72e70000   0x00023000   C:\WINDOWS\SYSTEM32\WINMMBASE.dll
    0x6d340000   0x0099a000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\gepard.dll
    0x756f0000   0x00006000   C:\WINDOWS\System32\PSAPI.DLL
    0x6ad50000   0x0008d000   C:\WINDOWS\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.18362.900_none_71d0bf6f5ae996a8\COMCTL32.dll
    0x74610000   0x0000f000   C:\WINDOWS\SYSTEM32\WTSAPI32.dll
    0x6ae80000   0x0018f000   C:\WINDOWS\SYSTEM32\dbghelp.dll
    0x71590000   0x00008000   C:\WINDOWS\SYSTEM32\FLTLIB.DLL
    0x741a0000   0x0045b000   C:\WINDOWS\SYSTEM32\WININET.dll
    0x74a90000   0x00008000   C:\WINDOWS\SYSTEM32\VERSION.dll
    0x001e0000   0x00007000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\DINPUT.dll
    0x02750000   0x0005d000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\granny2.dll
    0x72d30000   0x00044000   C:\WINDOWS\SYSTEM32\WINSTA.dll
    0x71690000   0x0007a000   C:\WINDOWS\system32\uxtheme.dll
    0x74cc0000   0x00103000   C:\WINDOWS\System32\MSCTF.dll
    0x6e410000   0x00084000   C:\WINDOWS\SYSTEM32\TextInputFramework.dll
    0x6dee0000   0x0025e000   C:\WINDOWS\SYSTEM32\CoreUIComponents.dll
    0x6e380000   0x00089000   C:\WINDOWS\SYSTEM32\CoreMessaging.dll
    0x6b4f0000   0x000da000   C:\WINDOWS\SYSTEM32\wintypes.dll
    0x73d40000   0x00029000   C:\WINDOWS\SYSTEM32\ntmarta.dll
    0x72870000   0x00229000   C:\WINDOWS\SYSTEM32\iertutil.dll
    0x75700000   0x00007000   C:\WINDOWS\System32\NSI.dll
    0x72db0000   0x00015000   C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
    0x72b20000   0x00052000   C:\WINDOWS\system32\mswsock.dll
    0x6e150000   0x00011000   C:\WINDOWS\system32\napinsp.dll
    0x6cac0000   0x00016000   C:\WINDOWS\system32\pnrpnsp.dll
    0x73270000   0x00093000   C:\WINDOWS\SYSTEM32\DNSAPI.dll
    0x72150000   0x0000b000   C:\WINDOWS\System32\winrnr.dll
    0x6caa0000   0x00016000   C:\WINDOWS\system32\NLAapi.dll
    0x6e140000   0x00010000   C:\WINDOWS\system32\wshbth.dll
    0x723d0000   0x00051000   C:\WINDOWS\System32\fwpuclnt.dll
    0x74c30000   0x00019000   C:\WINDOWS\System32\bcrypt.dll
    0x72da0000   0x00008000   C:\Windows\System32\rasadhlp.dll
    0x06180000   0x0002a000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\Mp3dec.asi
    0x04800000   0x00016000   C:\Users\Juan\Desktop\Ro MIGDART\Midgard Cliente Full\Mssfast.m3d
    0x6de60000   0x0007e000   C:\WINDOWS\SYSTEM32\DSOUND.DLL
    0x77020000   0x00080000   C:\WINDOWS\System32\clbcatq.dll
    0x6cfb0000   0x00062000   C:\WINDOWS\System32\MMDevApi.dll
    0x6aa90000   0x00023000   C:\WINDOWS\System32\DEVOBJ.dll
    0x6dd40000   0x0011e000   C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
    0x72300000   0x0000f000   C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll
    0x6d020000   0x00100000   C:\Windows\System32\Windows.UI.dll
    0x6cee0000   0x000c2000   C:\Windows\System32\InputHost.dll
    0x6bce0000   0x000c6000   C:\Windows\System32\PROPSYS.dll
    0x722f0000   0x00008000   C:\WINDOWS\SYSTEM32\avrt.dll
    0x6c670000   0x0013c000   C:\WINDOWS\System32\DriverStore\FileRepository\igdlh64.inf_amd64_618947f7f882ca01\igdumdim32.dll
    0x65910000   0x041f4000   C:\WINDOWS\System32\DriverStore\FileRepository\igdlh64.inf_amd64_618947f7f882ca01\igd9dxva32.dll
    0x6c530000   0x00137000   C:\WINDOWS\System32\DriverStore\FileRepository\igdlh64.inf_amd64_618947f7f882ca01\igdgmm32.dll
    0x72240000   0x0001f000   C:\WINDOWS\System32\DriverStore\FileRepository\igdlh64.inf_amd64_618947f7f882ca01\igdinfo32.dll
    0x5d180000   0x02031000   C:\WINDOWS\System32\DriverStore\FileRepository\igdlh64.inf_amd64_618947f7f882ca01\igc32.dll
    0x6cdf0000   0x00062000   C:\WINDOWS\SYSTEM32\D3DIM700.DLL
    0x6ce60000   0x00025000   C:\WINDOWS\SYSTEM32\dwmapi.dll
    0x72d20000   0x0000d000   C:\WINDOWS\system32\wbem\wbemprox.dll
    0x72cb0000   0x00069000   C:\WINDOWS\SYSTEM32\wbemcomn.dll
    0x72ca0000   0x00010000   C:\WINDOWS\system32\wbem\wbemsvc.dll
    0x72b90000   0x000cb000   C:\WINDOWS\system32\wbem\fastprox.dll
    0x72af0000   0x0000f000   C:\WINDOWS\SYSTEM32\amsi.dll
    0x74100000   0x0001e000   C:\WINDOWS\SYSTEM32\USERENV.dll
    0x72260000   0x0006b000   C:\ProgramData\Microsoft\Windows Defender\platform\4.18.2006.10-0\X86\MpOav.dll
     

     

     

    2.-

    Spoiler

    Ragnarok has been crashed!

    UTC Time:       19/06/2020 23:59:33
    Local Time:     19/06/2020 19:59:33
    EXE version:    2015-11-02
    Gepard version: 2020052901

    OS version: Windows 10

    0x006c0740 midgardro.exe
    0x009116cc midgardro.exe
    0x009925c6 midgardro.exe
    0x00994027 midgardro.exe
    0x779e7bf4 ntdll.dll
    0xffffffffffffffff ----------
    0x77a08fd6 ntdll.dll

    EAX: 0x00000000 | 0000000000
    ECX: 0x00000000 | 0000000000
    EDX: 0x02370000 | 0037158912
    EBX: 0x00bc4db0 | 0012340656
    ESI: 0x00000000 | 0000000000
    EDI: 0x00000000 | 0000000000
    ESP: 0x0019fa8c | 0001702540
    EBP: 0x0019faa0 | 0001702560
    EIP: 0x006c0740 | 0007079744
    DR0: 0x00000000 | 0000000000
    DR1: 0x00000000 | 0000000000
    DR2: 0x00000000 | 0000000000
    DR3: 0x00000000 | 0000000000
    DR6: 0x00000000 | 0000000000
    DR7: 0x00000000 | 0000000000

    =============================================================================

    RST: 0
    SST: 0
    CST: 0
    TCI: 1

    TL1: 0
    TL2: 3
    TL3: 0

    =================================== Stack ===================================
    0019fa8c:  04 ae 95 00 d8 4d bc 00 d0 d7 93 28 b0 4d bc 00        M     ( M  
    0019fa9c:  f0 7f e4 00 d0 fa 19 00 cc 16 91 00 a8 4d bc 00                M  
    0019faac:  64 a2 65 00 b0 4d bc 00 75 4d 63 66 70 3e e3 76   d e  M  uMcfp> v
    0019fabc:  01 00 00 00 10 3f e3 76 40 ff 19 00 06 b4 9f 00        ? [email protected]       
    0019facc:  ff ff ff ff 4c ff 19 00 c6 25 99 00 d0 d7 93 28       L    %     (
    0019fadc:  9c 9d af 00 e9 48 63 66 00 00 00 00 40 33 37 02        Hcf    @37 
    0019faec:  0a 00 00 00 01 00 00 00 40 42 0f 00 00 00 40 00           @B    @ 
    0019fafc:  40 33 37 02 a7 dd 7e 66 10 00 00 00 1e 37 70 3b   @37   ~f     7p;
    0019fb0c:  2c 27 d6 01 b0 c9 b2 ef 41 27 d6 01 b0 c9 b2 ef   ,'      A'      
    0019fb1c:  41 27 d6 01 00 00 00 00 00 00 00 00 64 00 69 00   A'          d i 
    0019fb2c:  73 00 6b 00 73 61 76 65 64 61 74 61 00 18 41 02   s k savedata  A 
    0019fb3c:  00 00 37 02 8a 0f 00 00 10 6a 37 02 00 00 37 02     7      j7   7 
    0019fb4c:  df ff 9b 77 00 00 37 02 50 e9 3e 02 58 e9 3e 02      w  7 P > X > 
    0019fb5c:  02 00 00 02 08 e0 ae 07 00 00 37 02 00 e0 ae 07             7     
    0019fb6c:  7f 07 00 00 ac fb 19 00 df ff 9b 77 01 00 00 00              w    
    0019fb7c:  58 e9 3e 02 ff 07 00 00 8a 0f 00 00 50 e9 3e 02   X >         P > 
    0019fb8c:  00 00 37 02 8a 0f 00 00 c8 b8 0b 07 8a 0f 00 00     7             
    0019fb9c:  00 00 37 02 00 00 00 00 8a 0f 00 00 f8 fb 19 00     7             
    0019fbac:  f8 fb 19 00 2a fa 9b 77 8a 0f 00 00 00 00 37 02       *  w      7 
    0019fbbc:  50 e9 3e 02 a0 65 3f 02 10 6a 37 02 00 00 37 02   P >  e?  j7   7 
    0019fbcc:  50 e9 3e 02 00 00 37 02 00 5d 3f 02 50 e9 3e 02   P >   7  ]? P > 
    0019fbdc:  ff 07 00 00 00 00 00 00 00 00 37 02 25 f7 07 00             7 %   
    0019fbec:  7f 07 00 00 d0 fc 19 00 3d e1 9b 77 d0 fc 19 00           =  w    
    0019fbfc:  03 e6 9b 77 8a 0f 00 00 99 ea 9b 77 42 b7 37 36      w       wB 76
    0019fc0c:  98 5d 3f 02 00 00 37 02 00 00 00 00 01 10 09 18    ]?   7         
    INIT: 15 : 17 : 0

    VSYNC: 1

    LL/LLD: d/29

    FM: 205204
    TM: 5ef4ac

    PMU: 2d7c0
    CMU: 2d79c

    =============================================================================

    Loaded GRFs:

    [0] gepard.grf
    [1] hdata.grf
    [2] hstyle.grf

    =============================================================================

    Network packet's statistic:

    s_bytes: 0 bytes
    r_bytes: 0 bytes

    s_packets ->: 0
    r_packets <-: 0


    =============================================================================

    00# [FAIL] sprite\shadow.spr [672 ms]
    01# [FAIL] sprite\shadow.act [672 ms]
    02# [ OK ] texture\유저인터페이스\replay_interface\btn_replay_b.bmp [672 ms]
    03# [ OK ] texture\유저인터페이스\replay_interface\btn_replay_a.bmp [672 ms]
    04# [ OK ] texture\유저인터페이스\replay_interface\btn_replay.bmp [672 ms]
    05# [ OK ] texture\유저인터페이스\login_interface\btn_exit_b.bmp [672 ms]
    06# [ OK ] texture\유저인터페이스\login_interface\btn_exit_a.bmp [672 ms]
    07# [ OK ] texture\유저인터페이스\login_interface\btn_exit.bmp [687 ms]
    08# [ OK ] texture\유저인터페이스\btn_cancel_b.bmp [687 ms]
    09# [ OK ] texture\유저인터페이스\btn_cancel_a.bmp [687 ms]
    10# [ OK ] texture\유저인터페이스\btn_cancel.bmp [687 ms]
    11# [ OK ] texture\유저인터페이스\btn_ok_b.bmp [687 ms]
    12# [ OK ] texture\유저인터페이스\btn_ok_a.bmp [687 ms]
    13# [ OK ] texture\유저인터페이스\btn_ok.bmp [687 ms]
    14# [ OK ] model\3dmob\guildflag90_1.gr2 [703 ms]
    15# [ OK ] model\3dmob\guildflag90_1.gr2 [719 ms]
    16# [FAIL] MapInfoTable.scp [1015 ms]
    17# [ OK ] LuaFiles514\lua files\quest\QuestLuaFileList.lub [1015 ms]
    18# [ OK ] LuaFiles514\lua files\quest\Quest_function.lub [1015 ms]
    19# [ OK ] LuaFiles514\lua files\quest\LocalQuest\QuestInfo\l_dewata_list.lub [1031 ms]
    20# [ OK ] LuaFiles514\lua files\quest\LocalQuest\LOCAL_DewataQuest_List.lub [1031 ms]
    21# [ OK ] LuaFiles514\lua files\quest\LocalQuest\QuestInfo\l_malaya_list.lub [1031 ms]
    22# [ OK ] LuaFiles514\lua files\quest\LocalQuest\LOCAL_MalayaQuest_list.lub [1031 ms]
    23# [ OK ] LuaFiles514\lua files\quest\EPQuest\QuestInfo\epsoid141_list.lub [1031 ms]
    24# [ OK ] LuaFiles514\lua files\quest\EPQuest\EP_141Quest_List.lub [1047 ms]
    25# [ OK ] ResNameTable.txt [1547 ms]
    26# [ OK ] ExceptionMinimapNameTable.txt [1562 ms]
    27# [FAIL] mapPosTable.txt [1562 ms]
    28# [ OK ] BuyingStoreItemList.txt [1562 ms]
    29# [ OK ] LuaFiles514\Lua Files\HatEffectInfo\HatEffectInfo.lub [1672 ms]
    30# [ OK ] LuaFiles514\Lua Files\DataInfo\TitleTable.lub [1672 ms]

    =============================================================================

    00000001 
    00000001 ..\ftwrk.lex
    00000001 C:\RagnarokOnline\ProhibitionLog.gd
    00000001 MapInfoTable.scp
    00000001 MonsterSkillInfo.xml
    00000001 itemParamTable.txt
    00000001 mapPosTable.txt
    00000001 sprite\shadow.act
    00000001 sprite\shadow.spr

    =============================================================================

    0x00400000   0x01d63000   C:\RagnarokOnline\midgardro.exe
    0x77980000   0x0019a000   C:\Windows\SYSTEM32\ntdll.dll
    0x76e10000   0x000e0000   C:\Windows\System32\KERNEL32.DLL
    0x77550000   0x001fe000   C:\Windows\System32\KERNELBASE.dll
    0x6ec70000   0x0009f000   C:\Windows\SYSTEM32\apphelp.dll
    0x757a0000   0x00079000   C:\Windows\System32\ADVAPI32.dll
    0x778a0000   0x000bf000   C:\Windows\System32\msvcrt.dll
    0x75570000   0x00076000   C:\Windows\System32\sechost.dll
    0x75210000   0x000bb000   C:\Windows\System32\RPCRT4.dll
    0x75150000   0x00020000   C:\Windows\System32\SspiCli.dll
    0x75140000   0x0000a000   C:\Windows\System32\CRYPTBASE.dll
    0x75690000   0x0005f000   C:\Windows\System32\bcryptPrimitives.dll
    0x75880000   0x00021000   C:\Windows\System32\GDI32.dll
    0x76f80000   0x00017000   C:\Windows\System32\win32u.dll
    0x76790000   0x0015b000   C:\Windows\System32\gdi32full.dll
    0x66c80000   0x000ea000   C:\Windows\SYSTEM32\DDRAW.dll
    0x75170000   0x0007c000   C:\Windows\System32\msvcp_win.dll
    0x75d00000   0x00197000   C:\Windows\System32\USER32.dll
    0x76670000   0x0011f000   C:\Windows\System32\ucrtbase.dll
    0x768f0000   0x00025000   C:\Windows\System32\IMM32.DLL
    0x6ff50000   0x000c1000   C:\Windows\SYSTEM32\dxgi.dll
    0x6eb40000   0x00007000   C:\Windows\SYSTEM32\DCIMAN32.dll
    0x75080000   0x00032000   C:\Windows\SYSTEM32\IPHLPAPI.DLL
    0x6e6f0000   0x00085000   C:\RagnarokOnline\MSVCP110.dll
    0x6f720000   0x00019000   C:\Windows\SYSTEM32\dxcore.dll
    0x76520000   0x0003b000   C:\Windows\System32\cfgmgr32.dll
    0x76920000   0x00275000   C:\Windows\System32\combase.dll
    0x755f0000   0x00092000   C:\Windows\System32\oleaut32.dll
    0x76fd0000   0x00579000   C:\Windows\System32\SHELL32.dll
    0x756f0000   0x00084000   C:\Windows\System32\shcore.dll
    0x75f50000   0x005c6000   C:\Windows\System32\windows.storage.dll
    0x76fb0000   0x0001b000   C:\Windows\System32\profapi.dll
    0x76bf0000   0x00043000   C:\Windows\System32\powrprof.dll
    0x667e0000   0x000d6000   C:\RagnarokOnline\MSVCR110.dll
    0x77890000   0x0000d000   C:\Windows\System32\UMPDC.dll
    0x75ea0000   0x00044000   C:\Windows\System32\shlwapi.dll
    0x77960000   0x0000f000   C:\Windows\System32\kernel.appcore.dll
    0x75550000   0x00013000   C:\Windows\System32\cryptsp.dll
    0x75820000   0x0005e000   C:\Windows\System32\WS2_32.dll
    0x76d10000   0x000f7000   C:\Windows\System32\ole32.dll
    0x743e0000   0x00013000   C:\Windows\SYSTEM32\NETAPI32.dll
    0x74de0000   0x00024000   C:\Windows\SYSTEM32\winmm.dll
    0x6e820000   0x00035000   C:\RagnarokOnline\binkw32.dll
    0x10000000   0x00015000   C:\RagnarokOnline\cps.dll
    0x60000000   0x0005d000   C:\RagnarokOnline\ijl15.dll
    0x21100000   0x0005e000   C:\RagnarokOnline\mss32.dll
    0x74db0000   0x00023000   C:\Windows\SYSTEM32\winmmbase.dll
    0x615f0000   0x0099a000   C:\RagnarokOnline\gepard.dll
    0x75200000   0x00006000   C:\Windows\System32\PSAPI.DLL
    0x74530000   0x0000f000   C:\Windows\SYSTEM32\WTSAPI32.dll
    0x66750000   0x0008d000   C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.18362.900_none_71d0bf6f5ae996a8\COMCTL32.dll
    0x73660000   0x0018f000   C:\Windows\SYSTEM32\dbghelp.dll
    0x6f150000   0x00008000   C:\Windows\SYSTEM32\FLTLIB.DLL
    0x73d80000   0x0045b000   C:\Windows\SYSTEM32\WININET.dll
    0x75130000   0x00008000   C:\Windows\SYSTEM32\VERSION.dll
    0x001e0000   0x00007000   C:\RagnarokOnline\DINPUT.dll
    0x02770000   0x0005d000   C:\RagnarokOnline\granny2.dll
    0x6e780000   0x00044000   C:\Windows\SYSTEM32\WINSTA.dll
    0x744b0000   0x0007a000   C:\Windows\system32\uxtheme.dll
    0x75440000   0x00103000   C:\Windows\System32\MSCTF.dll
    0x6af80000   0x00084000   C:\Windows\SYSTEM32\TextInputFramework.dll
    0x6aef0000   0x00089000   C:\Windows\SYSTEM32\CoreMessaging.dll
    0x6ac90000   0x0025e000   C:\Windows\SYSTEM32\CoreUIComponents.dll
    0x74f50000   0x00029000   C:\Windows\SYSTEM32\ntmarta.dll
    0x6e4b0000   0x000da000   C:\Windows\SYSTEM32\wintypes.dll
    0x73090000   0x00229000   C:\Windows\SYSTEM32\iertutil.dll
    0x76560000   0x00007000   C:\Windows\System32\NSI.dll
    0x748a0000   0x00015000   C:\Windows\SYSTEM32\dhcpcsvc.DLL
    0x74900000   0x00052000   C:\Windows\system32\mswsock.dll
    0x748c0000   0x00011000   C:\Windows\system32\napinsp.dll
    0x74700000   0x00016000   C:\Windows\system32\pnrpnsp.dll
    0x74790000   0x00093000   C:\Windows\SYSTEM32\DNSAPI.dll
    0x746b0000   0x0000b000   C:\Windows\System32\winrnr.dll
    0x74690000   0x00016000   C:\Windows\system32\NLAapi.dll
    0x74680000   0x00010000   C:\Windows\system32\wshbth.dll
    0x74620000   0x00051000   C:\Windows\System32\fwpuclnt.dll
    0x76cf0000   0x00019000   C:\Windows\System32\bcrypt.dll
    0x74600000   0x00008000   C:\Windows\System32\rasadhlp.dll
    0x04a80000   0x0002a000   C:\RagnarokOnline\Mp3dec.asi
    0x043f0000   0x00016000   C:\RagnarokOnline\Mssfast.m3d
    0x666d0000   0x0007e000   C:\Windows\SYSTEM32\DSOUND.DLL
    0x77750000   0x00080000   C:\Windows\System32\clbcatq.dll
    0x6b310000   0x00062000   C:\Windows\System32\MMDevApi.dll
    0x74f80000   0x00023000   C:\Windows\System32\DEVOBJ.dll
    0x73300000   0x0011e000   C:\Windows\SYSTEM32\AUDIOSES.DLL
    0x74240000   0x0000f000   C:\Windows\SYSTEM32\resourcepolicyclient.dll
    0x6b010000   0x00100000   C:\Windows\System32\Windows.UI.dll
    0x6abc0000   0x000c2000   C:\Windows\System32\InputHost.dll
    0x74fb0000   0x000c6000   C:\Windows\System32\PROPSYS.dll
    0x74220000   0x00008000   C:\Windows\SYSTEM32\avrt.dll
    0x60820000   0x00dce000   C:\Windows\SYSTEM32\nvd3dum.dll
    0x6b410000   0x00062000   C:\Windows\SYSTEM32\D3DIM700.DLL
     


    3.-
     

    Spoiler

    Ragnarok has been crashed!

    UTC Time:       14/06/2020 23:06:25
    Local Time:     14/06/2020 19:06:25
    EXE version:    2015-11-02
    Gepard version: 2020052901

    OS version: Windows 10

    0x0089810b midgardro.exe
    0x0088beea midgardro.exe
    0x0065a264 midgardro.exe
    0x009925c6 midgardro.exe
    0x00994027 midgardro.exe
    0x775f7bf4 ntdll.dll
    0xffffffffffffffff ----------
    0x77618fe3 ntdll.dll

    EAX: 0x00000000 | 0000000000
    ECX: 0x40ab15a8 | 1084954024
    EDX: 0x2dc92fc8 | 0768159688
    EBX: 0x4ac7ecc8 | 1254616264
    ESI: 0x4ac7ecc8 | 1254616264
    EDI: 0x4ac7ed30 | 1254616368
    ESP: 0x0019f938 | 0001702200
    EBP: 0x0019f948 | 0001702216
    EIP: 0x0089810b | 0009011467
    DR0: 0x00000000 | 0000000000
    DR1: 0x00000000 | 0000000000
    DR2: 0x00000000 | 0000000000
    DR3: 0x00000000 | 0000000000
    DR6: 0x00000000 | 0000000000
    DR7: 0x00000000 | 0000000000

    =============================================================================

    RST: 0
    SST: 0
    CST: 0
    TCI: 1

    TL1: 0
    TL2: 17
    TL3: 0

    =================================== Stack ===================================
    0019f938:  18 f1 25 4a c8 ec c7 4a de a1 9f 00 ff ff ff ff     %J   J        
    0019f948:  a8 fa 19 00 ea be 88 00 c2 ad c1 74 d8 4d bc 00              t M  
    0019f958:  a8 4d bc 00 b0 4d bc 00 c8 ec c7 4a 30 ed c7 4a    M   M     J0  J
    0019f968:  28 f0 25 4a 30 00 00 00 20 00 00 00 70 4b fd 05   ( %J0       pK  
    0019f978:  1e 00 00 00 1f 00 00 00 08 60 9a 43 00 00 17 02            ` C    
    0019f988:  00 00 3e 02 06 00 00 00 00 00 00 00 d2 6d 61 77     >          maw
    0019f998:  68 2a 65 5c 00 00 3e 02 09 00 00 00 cc 1a 17 02   h*e\  >         
    0019f9a8:  00 00 00 00 68 64 9b 43 c8 1a 17 02 00 00 00 00       hd C        
    0019f9b8:  64 00 00 00 00 00 00 00 18 8f 25 06 fe 02 00 00   d         %     
    0019f9c8:  00 00 00 00 b0 01 fe 02 00 ca 64 5c 68 2a 65 5c             d\h*e\
    0019f9d8:  08 8f 25 06 00 00 3e 02 00 00 3e 02 00 fa 19 00     %   >   >     
    0019f9e8:  b6 dc 5c 77 00 00 00 00 00 00 00 00 00 00 00 00     \w            
    0019f9f8:  cc f2 c7 4a 68 64 9b 43 14 fa 19 00 c2 dc a0 63      Jhd C       c
    0019fa08:  00 00 3e 02 00 00 00 00 68 2a 65 5c 44 fa 19 00     >     h*e\D   
    0019fa18:  62 28 41 00 68 2a 65 5c 2e ad c1 74 80 fa 19 00   b(A h*e\.  t    
    0019fa28:  cc f2 c7 4a b0 4d bc 00 68 64 9b 43 20 fa 19 00      J M  hd C    
    0019fa38:  60 fa 19 00 f0 82 9a 00 ff ff ff ff 6c fa 19 00   `           l   
    0019fa48:  13 aa 4a 00 06 00 00 00 06 ad c1 74 c8 ec c7 4a     J        t   J
    0019fa58:  cc f2 c7 4a 88 64 9b 43 a0 fa 19 00 32 18 9c 00      J d C    2   
    0019fa68:  ff ff ff ff 84 fa 19 00 f8 e7 8b 00 88 64 9b 43                d C
    0019fa78:  c8 ec c7 4a bc ee c7 4a 7b 03 00 00 ac fa 19 00      J   J{       
    0019fa88:  ea c0 87 00 c6 ad c1 74 d8 4d bc 00 a8 4d bc 00          t M   M  
    0019fa98:  c2 ad c1 74 c4 fa 19 00 f6 ec a2 00 03 00 00 00      t            
    0019faa8:  d0 fa 19 00 64 a2 65 00 b0 4d bc 00 ba ad c1 74       d e  M     t
    0019fab8:  70 3e 40 75 01 00 00 00 10 3f 40 75 40 ff 19 00   p>@u     [email protected]@   
    INIT: 15 : 17 : 0

    VSYNC: 0

    LL/LLD: 13d/164

    FM: be7318
    TM: feed90

    PMU: 77088
    CMU: 5f238

    =============================================================================

    Loaded GRFs:

    [0] gepard.grf
    [1] dark.grf
    [2] Simplified2.grf
    [3] hdata.grf
    [4] hstyle.grf
    [5] data.grf

    =============================================================================

    Network packet's statistic:

    s_bytes: 133 Kbytes
    r_bytes: 8 Mbytes

    s_packets ->: 10597
    r_packets <-: 402138

    00# <- 91006261745f6130342e676174000000000061013400 [532 ms]
    01# <- df0256a61e000000000000000000000000000000000000000000000000000000ffffffff [532 ms]
    02# <- df0256a61e000000000000000000000000000000000000000000000000000000ffffffff [532 ms]
    03# <- 86009eaa9c060e0e30e0e588d9724f07 [532 ms]
    04# <- 8700c0724f070d8e70c0ed88 [547 ms]
    05# <- ff095b00063a4f960600000000c80000000000020000005a03000000000000000000000000000000000000000000000000000000000000000000000a0f3400000000000000ffffffffffffffff0000002376656e645f736c6f7433 [547 ms]
    06# <- ff095b00063b4f960600000000c80000000000020000005a03000000000000000000000000000000000000000000000000000000000000000000000a0f0400000000000000ffffffffffffffff0000002376656e645f736c6f7434 [547 ms]
    07# <- 840902a91e00a1020f2700000f270000010000000000000000000000 [563 ms]
    08# <- 310102a91e00424c55452048455242532053494c4b2047554152440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [563 ms]
    09# <- ff0956000002a91e0042840200bb0000000000000000000500080000000000000000000000000000000000000000000000000000000000000000010a0f070505001b000000ffffffffffffffff000000446f63746f72 [563 ms]
    10# <- 8409cea51e00a1020f2700000f270000010000000000000000000000 [563 ms]
    11# <- 3101cea51e004d4f52524947414e4520534554204c4f4e4720484f524e20424c4f4f44590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [563 ms]
    12# <- ff09630000cea51e00487e0200960000000000000000000500030053040000080000000000000000000200000000000000000000000000000000010a0f360505001f000000ffffffffffffffff000000506572726f20626f6d6261206465746f6e616f [563 ms]
    13# <- d701dda01e000729000000 [563 ms]
    14# <- ff09540000dda01e006275020096000000000000000000ce0f1c0000000000e5047005e504200029000000000081000000010000000000000000010acf5605050063000000ffffffffffffffff00000031313131 [563 ms]
    15# <- 29024a4f9606000000000200000000 [735 ms]
    16# <- 8000cd97960600 [766 ms]
    17# <- 3201b3a41e00 [766 ms]
    18# <- 8000b3a41e0000 [766 ms]
    19# <- 8000bb97960600 [766 ms]
    20# <- 320199a41e00 [766 ms]
    21# <- 800099a41e0000 [766 ms]
    22# -> 63030c0ed0 [782 ms]
    23# <- 2902ca979606000000000200000000 [797 ms]
    24# <- 2902464f9606000000000200000000 [922 ms]
    25# <- 29024b4f9606000000000200000000 [922 ms]
    26# <- 950190a31e00537472616e67657200000000000000000000000000000000746f626900000000000000000000000000000000000000000000086e0c05000000006a0000000000000006000000000000000078aa08000000002a9e5e0000000000409d5e000000 [938 ms]
    27# <- 87001c714f070e0e50ccf088 [969 ms]
    28# <- 9500e4a71e00526f7468736368696c640000000000000000000000000000 [1000 ms]
    29# -> 870890a31e00 [1110 ms]
    30# -> 63030ccf00 [1141 ms]

    =============================================================================

    00# [FAIL] bat_a04.rsw [172 ms]
    01# [ OK ] texture\유저인터페이스\loading03.jpg [203 ms]
    02# [ OK ] palette\머리\머리28_여_6.pal [16782 ms]
    03# [ OK ] sprite\악세사리\여\여_무지개스카프.spr [16782 ms]
    04# [ OK ] sprite\악세사리\여\여_무지개스카프.act [16782 ms]
    05# [ OK ] sprite\인간족\머리통\여\28_여.spr [16782 ms]
    06# [ OK ] sprite\인간족\머리통\여\28_여.act [16782 ms]
    07# [ OK ] sprite\인간족\몸통\여\크리에이터_여.spr [16782 ms]
    08# [ OK ] sprite\인간족\몸통\여\크리에이터_여.act [16782 ms]
    09# [ OK ] texture\effect\magic_violet.tga [29703 ms]
    10# [ OK ] texture\effect\cloud11.tga [30391 ms]
    11# [ OK ] texture\effect\magic_violet.tga [30438 ms]
    12# [ OK ] texture\유저인터페이스\item\보라색염료.bmp [33938 ms]
    13# [ OK ] texture\유저인터페이스\item\빨간색염료.bmp [33938 ms]
    14# [ OK ] texture\유저인터페이스\item\노란색염료.bmp [33938 ms]
    15# [ OK ] texture\유저인터페이스\item\현자의돌.bmp [50453 ms]
    16# [ OK ] texture\유저인터페이스\item\우울한상자.bmp [50453 ms]
    17# [ OK ] texture\유저인터페이스\item\새싹.bmp [58672 ms]
    18# [ OK ] texture\유저인터페이스\item\코로넷.bmp [60594 ms]
    19# [ OK ] texture\유저인터페이스\item\씨프클로스.bmp [60594 ms]
    20# [ OK ] texture\유저인터페이스\item\날카로운잎사귀.bmp [92422 ms]
    21# [ OK ] ..\_tmpEmblem\midgard_133_17.ebm [93422 ms]
    22# [ OK ] texture\유저인터페이스\item\초록색염료.bmp [94657 ms]
    23# [ OK ] texture\유저인터페이스\item\주홍색염료.bmp [94657 ms]
    24# [ OK ] texture\유저인터페이스\item\핑거.bmp [94657 ms]
    25# [ OK ] texture\유저인터페이스\item\피스트.bmp [94657 ms]
    26# [ OK ] texture\유저인터페이스\item\테일.bmp [94657 ms]
    27# [ OK ] texture\유저인터페이스\item\덱요리03.bmp [94657 ms]
    28# [ OK ] texture\유저인터페이스\item\고쿠린.bmp [96985 ms]
    29# [ OK ] texture\유저인터페이스\item\롱코트.bmp [96985 ms]
    30# [ OK ] texture\유저인터페이스\item\암속성알.bmp [96985 ms]

    =============================================================================

    00000001 
    00000078 ..\_tmpEmblem\..\data\texture\effect\flaggraffiti137.ebm
    00000001 ..\ftwrk.lex
    00000001 C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\ProhibitionLog.gd
    00000001 bat_a04.rsw

    =============================================================================

    0x00400000   0x01d63000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\midgardro.exe
    0x77590000   0x0019a000   C:\Windows\SYSTEM32\ntdll.dll
    0x753e0000   0x000e0000   C:\Windows\System32\KERNEL32.DLL
    0x77380000   0x001fe000   C:\Windows\System32\KERNELBASE.dll
    0x74cb0000   0x0009f000   C:\Windows\SYSTEM32\apphelp.dll
    0x751f0000   0x00079000   C:\Windows\System32\ADVAPI32.dll
    0x766a0000   0x000bf000   C:\Windows\System32\msvcrt.dll
    0x771d0000   0x00076000   C:\Windows\System32\sechost.dll
    0x76810000   0x000bb000   C:\Windows\System32\RPCRT4.dll
    0x74d60000   0x00020000   C:\Windows\System32\SspiCli.dll
    0x74d50000   0x0000a000   C:\Windows\System32\CRYPTBASE.dll
    0x75dd0000   0x0005f000   C:\Windows\System32\bcryptPrimitives.dll
    0x76ad0000   0x00021000   C:\Windows\System32\GDI32.dll
    0x76680000   0x00017000   C:\Windows\System32\win32u.dll
    0x70be0000   0x000ea000   C:\Windows\SYSTEM32\DDRAW.dll
    0x768f0000   0x0015b000   C:\Windows\System32\gdi32full.dll
    0x75590000   0x00197000   C:\Windows\System32\USER32.dll
    0x76a50000   0x0007c000   C:\Windows\System32\msvcp_win.dll
    0x75020000   0x0011f000   C:\Windows\System32\ucrtbase.dll
    0x70bd0000   0x00007000   C:\Windows\SYSTEM32\DCIMAN32.dll
    0x70b00000   0x000c1000   C:\Windows\SYSTEM32\dxgi.dll
    0x74fe0000   0x00025000   C:\Windows\System32\IMM32.DLL
    0x70ae0000   0x00019000   C:\Windows\SYSTEM32\dxcore.dll
    0x73210000   0x00032000   C:\Windows\SYSTEM32\IPHLPAPI.DLL
    0x75150000   0x0003b000   C:\Windows\System32\cfgmgr32.dll
    0x63ae0000   0x00085000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\MSVCP110.dll
    0x762f0000   0x00275000   C:\Windows\System32\combase.dll
    0x772e0000   0x00092000   C:\Windows\System32\oleaut32.dll
    0x75850000   0x00579000   C:\Windows\System32\SHELL32.dll
    0x77250000   0x00084000   C:\Windows\System32\shcore.dll
    0x76bb0000   0x005c6000   C:\Windows\System32\windows.storage.dll
    0x768d0000   0x0001b000   C:\Windows\System32\profapi.dll
    0x754c0000   0x00043000   C:\Windows\System32\powrprof.dll
    0x76570000   0x0000d000   C:\Windows\System32\UMPDC.dll
    0x63a00000   0x000d6000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\MSVCR110.dll
    0x77180000   0x00044000   C:\Windows\System32\shlwapi.dll
    0x74d80000   0x0000f000   C:\Windows\System32\kernel.appcore.dll
    0x74d90000   0x00013000   C:\Windows\System32\cryptsp.dll
    0x75530000   0x0005e000   C:\Windows\System32\WS2_32.dll
    0x76580000   0x000f7000   C:\Windows\System32\ole32.dll
    0x71060000   0x00013000   C:\Windows\SYSTEM32\NETAPI32.dll
    0x725f0000   0x00024000   C:\Windows\SYSTEM32\winmm.dll
    0x30000000   0x0006d000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\binkw32.dll
    0x10000000   0x00015000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\cps.dll
    0x60000000   0x0005d000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\ijl15.dll
    0x21100000   0x0005e000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\mss32.dll
    0x721f0000   0x00023000   C:\Windows\SYSTEM32\winmmbase.dll
    0x59400000   0x0099a000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\gepard.dll
    0x75140000   0x00006000   C:\Windows\System32\PSAPI.DLL
    0x63970000   0x0008d000   C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.18362.900_none_71d0bf6f5ae996a8\COMCTL32.dll
    0x72510000   0x0000f000   C:\Windows\SYSTEM32\WTSAPI32.dll
    0x708a0000   0x0018f000   C:\Windows\SYSTEM32\dbghelp.dll
    0x72660000   0x0045b000   C:\Windows\SYSTEM32\WININET.dll
    0x63460000   0x00008000   C:\Windows\SYSTEM32\FLTLIB.DLL
    0x72520000   0x00008000   C:\Windows\SYSTEM32\VERSION.dll
    0x00030000   0x00007000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\DINPUT.dll
    0x02350000   0x0005d000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\granny2.dll
    0x71b90000   0x00044000   C:\Windows\SYSTEM32\WINSTA.dll
    0x73080000   0x0007a000   C:\Windows\system32\uxtheme.dll
    0x74db0000   0x00103000   C:\Windows\System32\MSCTF.dll
    0x710f0000   0x00084000   C:\Windows\SYSTEM32\TextInputFramework.dll
    0x70fd0000   0x00089000   C:\Windows\SYSTEM32\CoreMessaging.dll
    0x70d70000   0x0025e000   C:\Windows\SYSTEM32\CoreUIComponents.dll
    0x70ab0000   0x00029000   C:\Windows\SYSTEM32\ntmarta.dll
    0x70790000   0x000da000   C:\Windows\SYSTEM32\wintypes.dll
    0x71f50000   0x00229000   C:\Windows\SYSTEM32\iertutil.dll
    0x75010000   0x00007000   C:\Windows\System32\NSI.dll
    0x741f0000   0x00015000   C:\Windows\SYSTEM32\dhcpcsvc.DLL
    0x71a50000   0x00052000   C:\Windows\system32\mswsock.dll
    0x63830000   0x00011000   C:\Windows\system32\napinsp.dll
    0x63810000   0x00016000   C:\Windows\system32\pnrpnsp.dll
    0x73250000   0x00093000   C:\Windows\SYSTEM32\DNSAPI.dll
    0x63800000   0x0000b000   C:\Windows\System32\winrnr.dll
    0x74180000   0x00016000   C:\Windows\system32\NLAapi.dll
    0x637f0000   0x00010000   C:\Windows\system32\wshbth.dll
    0x6f0b0000   0x00051000   C:\Windows\System32\fwpuclnt.dll
    0x74fc0000   0x00019000   C:\Windows\System32\bcrypt.dll
    0x71a30000   0x00008000   C:\Windows\System32\rasadhlp.dll
    0x045b0000   0x0002a000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\Mp3dec.asi
    0x04630000   0x00016000   C:\Users\Pc1\Downloads\Midgard Cliente Full - GRF ON\Mssfast.m3d
    0x5f2c0000   0x0007e000   C:\Windows\SYSTEM32\DSOUND.DLL
    0x757c0000   0x00080000   C:\Windows\System32\clbcatq.dll
    0x71080000   0x00062000   C:\Windows\System32\MMDevApi.dll
    0x706a0000   0x00023000   C:\Windows\System32\DEVOBJ.dll
    0x62e60000   0x0011e000   C:\Windows\SYSTEM32\AUDIOSES.DLL
    0x5e320000   0x0000f000   C:\Windows\SYSTEM32\resourcepolicyclient.dll
    0x72410000   0x00100000   C:\Windows\System32\Windows.UI.dll
    0x71180000   0x000c2000   C:\Windows\System32\InputHost.dll
    0x71e80000   0x000c6000   C:\Windows\System32\PROPSYS.dll
    0x5f350000   0x00008000   C:\Windows\SYSTEM32\avrt.dll
    0x62ba0000   0x0017f000   C:\Windows\System32\DriverStore\FileRepository\u0354308.inf_amd64_48534036afa0f0d8\B354265\aticfx32.dll
    0x63ff0000   0x00029000   C:\Windows\System32\DriverStore\FileRepository\u0354308.inf_amd64_48534036afa0f0d8\B354265\atiu9pag.dll
    0x58a00000   0x009fd000   C:\Windows\System32\DriverStore\FileRepository\u0354308.inf_amd64_48534036afa0f0d8\B354265\atiumdag.dll
    0x70870000   0x00024000   C:\Windows\SYSTEM32\dbgcore.DLL
    0x61640000   0x00026000   C:\Windows\SYSTEM32\amdihk32.dll
    0x63900000   0x00062000   C:\Windows\SYSTEM32\D3DIM700.DLL
    0x725a0000   0x00025000   C:\Windows\SYSTEM32\dwmapi.dll
    0x637e0000   0x0000d000   C:\Windows\system32\wbem\wbemprox.dll
    0x63770000   0x00069000   C:\Windows\SYSTEM32\wbemcomn.dll
    0x62e50000   0x00010000   C:\Windows\system32\wbem\wbemsvc.dll
    0x62d80000   0x000cb000   C:\Windows\system32\wbem\fastprox.dll
    0x62d70000   0x0000f000   C:\Windows\SYSTEM32\amsi.dll
    0x72530000   0x0001e000   C:\Windows\SYSTEM32\USERENV.dll
    0x62d30000   0x00039000   C:\ProgramData\Microsoft\Windows Defender\platform\4.18.2005.5-0\X86\MpOav.dll
     

     

  8. On 7/25/2018 at 12:58 PM, CyberDevil said:

    This is the official @Euphy's WOE Controller: https://github.com/rathena/rathena/blob/master/npc/custom/woe_controller.txt

    It is really a good script but I wanted to ask you if someone can help me to modify it in order to setup sessions that start/end at the 30th minute of every hour, for example a session that starts at 21:30 and ends at 22:30 pm and not only 21:00~22:00 like now.
    Can anybody help me? 😉

    //===== rAthena Script =======================================
    //= Euphy's WOE Controller
    //===== By: ==================================================
    //= Euphy
    //===== Current Version: =====================================
    //= 1.5
    //===== Compatible With: =====================================
    //= rAthena Project
    //===== Description: =========================================
    //= A controller for War of Emperium designed for
    //= simplicity and ease of use.
    //= Many concepts taken from ToastOfDoom's script,
    //= and "rewards" function originally by Goddameit.
    //===== Additional Comments: =================================
    //= Be sure to disable the default agit controllers!
    //== npc\guild\agit_controller.txt
    //== npc\guild2\agit_start_se.txt
    //============================================================
    
    // Information NPC
    //============================================================
    prontera,149,193,4	script	WOE Information	835,{
    	doevent "WOE_CONTROL::OnMenu";
    	end;
    OnAgitStart:
    	while(agitcheck()) {
    		specialeffect EF_BEGINSPELL6;
    		sleep 425;
    	}
    	end;
    }
    
    // Script Core
    //============================================================
    -	script	WOE_CONTROL	-1,{
    function Disp_Owner; function Add_Zero;
    
    OnInit:
    
    // -----------------------------------------------------------
    //  Configuration settings.
    // -----------------------------------------------------------
    
    	set .CastleWarp,0;		// 1: Always enable all castle warps. | 0: Warp only to active castles.
    	set .AutoKick,1;		// Automatically kick players from inactive castles during WOE? (1:yes / 0:no)
    	set .NoOwner,0; 		// Automatically kick players from unconquered castles outside of WOE? (1:yes / 0:no)
    	set .ExitWarp,0;		// Warp all players from castles when WOE ends? (1:yes / 0:no)
    	set .GMAccess,99;		// GM level required to access Session Manager.
    
    // -----------------------------------------------------------
    //  Reward options.
    // -----------------------------------------------------------
    //  [1] Enable rewards.
    //  [2] Mail all rewards.
    //      - If not set, players receive items in their inventory.
    //      - Only ONE item can be sent via mail, plus Zeny.
    //      - Note that offline players do NOT receive rewards.
    //  [4] Only reward Guild Masters.
    //      - If not set, all guild members are rewarded.
    //      - If mailing is enabled (option 2), offline Guild Masters WILL receive rewards.
    //  [8] Duplicate IP check.
    //      - Members in a guild with the same IP address are not rewarded.
    //      - If Guild Masters is enabled (option 4), this feature is not used.
    // -----------------------------------------------------------
    
    	// Combine values as needed (e.g. 1|8 = 1+8 = 9).
    	set .Options, 1|8;
    
    	// Rewards per castle.
    	// -- when given directly: <itemID>,<amount>{,<itemID>,<amount>,...}
    	// -- via mail (option 2): <itemID>,<amount>,<Zeny>
    	setarray .Reward[0],14001,1;
    
    // -----------------------------------------------------------
    //  Constants (leave this section alone).
    // -----------------------------------------------------------
    
    	setarray .Castles$[0],
    		"prtg_cas01","prtg_cas02","prtg_cas03","prtg_cas04","prtg_cas05",
    		"payg_cas01","payg_cas02","payg_cas03","payg_cas04","payg_cas05",
    		"gefg_cas01","gefg_cas02","gefg_cas03","gefg_cas04","gefg_cas05",
    		"aldeg_cas01","aldeg_cas02","aldeg_cas03","aldeg_cas04","aldeg_cas05",
    		"arug_cas01","arug_cas02","arug_cas03","arug_cas04","arug_cas05",
    		"schg_cas01","schg_cas02","schg_cas03","schg_cas04","schg_cas05";
    	setarray .EndLabel$[0],"ar01","ar02","ar03","ar04","ar05","sc01","sc02","sc03","sc04","sc05";
    	setarray .Days$[0],"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday";
    	setarray .Regions$[0],"Prontera","Payon","Geffen","Aldebaran","Arunafeltz","Schwaltzvalt";
    	setarray .Map$[0],"prt_gld","pay_gld","gef_fild13","alde_gld","aru_gld","sch_gld";
    	setarray .MapX[0],134,240,153,111,208,121,295,317,140,204,214,308,143,193,305,48, 95,142,239,264,158,83, 68,299,292,293,288, 97,137, 71;
    	setarray .MapY[0], 65,128,137,240,240,233,116,293,160,266, 75,240,240,278, 87,83,249, 85,242, 90,272,47,155,345,107,100,252,196, 90,315;
    
    // -----------------------------------------------------------
    
    	set .Size, getarraysize($WOE_CONTROL);
    	if (.AutoKick || .NoOwner)
    		for(set .@i,0; .@i<30; set .@i,.@i+1) {
    			setmapflag .Castles$[.@i], mf_loadevent;
    			setd "."+.Castles$[.@i], .@i;
    		}
    	if (!agitcheck() && !agitcheck2()) sleep 4000;
    	set .Init,1;
    
    OnMinute00:
    	freeloop(1);
    	if (agitcheck() || agitcheck2()) {
    		for(set .@i,0; .@i<.Size; set .@i,.@i+4)
    			if (gettime(DT_DAYOFWEEK) == $WOE_CONTROL[.@i] && gettime(DT_HOUR) == $WOE_CONTROL[.@i+2]) {
    			OnWOEEnd:
    				announce "The War Of Emperium is over!",bc_all|bc_woe;
    				AgitEnd; AgitEnd2;
    				sleep 1000;
    				for(set .@j,0; .@j<30; set .@j,.@j+1) {
    					if (.Active[0]&(1<<.@j)) Disp_Owner(.Castles$[.@j],1);
    					if (.ExitWarp) maprespawnguildid .Castles$[.@j],0,3;
    				}
    				if ((.Options&1) && .Active[0] && .ForceEnd != 2) callsub OnReward, .Active[0];
    				deletearray .Active[0],2;
    				if (.ForceEnd) { set .ForceEnd,0; end; }
    				break;
    			}
    	}
    	if ((!agitcheck() && !agitcheck2()) || .Init) {
    		if (!agitcheck() && !agitcheck2()) set .Init,0;
    		for(set .@i,0; .@i<.Size; set .@i,.@i+4)
    			if (gettime(DT_DAYOFWEEK) == $WOE_CONTROL[.@i] && gettime(DT_HOUR) >= $WOE_CONTROL[.@i+1] && gettime(DT_HOUR) < $WOE_CONTROL[.@i+2]) {
    				deletearray .Active[0],2;
    				set .Active[0], $WOE_CONTROL[.@i+3];
    				if (.Init) { AgitEnd; AgitEnd2; }
    				else announce "The War Of Emperium has begun!",bc_all|bc_woe;
    				sleep 1000;
    				AgitStart; AgitStart2;
    				for(set .@j,0; .@j<30; set .@j,.@j+1) {
    					if (.Active[0]&(1<<.@j)) {
    						if (!.Init) Disp_Owner(.Castles$[.@j],0);
    						set .Active[1], .Active[1] | (1<<((.@j/5)+1));
    					} else {
    						if (.@j<20) {
    							donpcevent "Agit#"+.Castles$[.@j]+"::OnAgitEnd";
    							killmonster .Castles$[.@j], "Agit#"+.Castles$[.@j]+"::OnAgitBreak";
    						} else {
    							donpcevent "Manager#"+.Castles$[.@j]+"::OnAgitEnd2";
    							killmonster .Castles$[.@j], "Steward#"+.EndLabel$[.@j-20]+"::OnStartArena";
    						}
    					}
    				}
    				break;
    			}
    	}
    	set .Init,0;
    	end;
    
    function Disp_Owner {
    	set .@o, getcastledata(getarg(0),1);
    	if (.@o) announce "The ["+getcastlename(getarg(0))+"] castle "+((getarg(1))?"has been conquered":"is currently held")+" by the ["+getguildname(.@o)+"] guild.",bc_all|bc_woe;
    	else announce "The ["+getcastlename(getarg(0))+"] castle is currently unoccupied.",bc_all|bc_woe;
    	return;
    }
    function Add_Zero {
    	return ((getarg(0)<10)?"0":"")+getarg(0)+(getarg(1,0)?".":":")+"00";
    }
    
    OnReward:
    	set .@sql$, ((.Options&4)?"position = 0":"online = 1");
    	if (.Options&2) set .@str$,gettimestr("%B %d, %Y",21);
    	freeloop(1);
    	for(set .@i,0; .@i<30; set .@i,.@i+1)
    		if (getarg(0)&(1<<.@i)) {
    			set .@gid, getcastledata(.Castles$[.@i],1);
    			if (!.@gid) continue;
    			set .@size, query_sql("SELECT account_id,char_id FROM `guild_member` WHERE guild_id = '"+.@gid+"' AND "+.@sql$,.@aid,.@cid);
    			for(set .@j,0; .@j<.@size; set .@j,.@j+1) {
    				if ((.Options&8) && !(.Options&4)) {
    					set .@ip$, replacestr(getcharip(.@aid[.@j]),".","a");
    					if (getd("[email protected]_"+.@i+"_"+.@ip$)) continue;
    					setd "[email protected]_"+.@i+"_"+.@ip$,1;
    				}
    				if (.Options&2) {
    					query_sql("INSERT INTO `mail` (send_name,dest_id,title,message,nameid,amount,identify,zeny,time) VALUES ("+
    					          "'no-reply',"+.@cid[.@j]+",'** Siege Reward: "+getcastlename(.Castles$[.@i])+" **',"+
    					          "'Brave one,% % Congratulations!% Your guild has successfully occupied% territory in the War of Emperium on% "+.@str$+".% % % % % [ Your reward is attached. ]',"+
    					          .Reward[0]+","+.Reward[1]+",0,"+.Reward[2]+",UNIX_TIMESTAMP(NOW()))");
    					if (!getd("[email protected]_"+.@cid[.@j]) && isloggedin(.@aid[.@j],.@cid[.@j])) {
    						setd "[email protected]_"+.@cid[.@j],1;
    						message rid2name(.@aid[.@j]),"You've got mail! Please re-login to update your mailing list.";
    					}
    				} else if (isloggedin(.@aid[.@j])) {
    					for(set .@k,0; .@k<getarraysize(.Reward); set .@k,.@k+2)
    						getitem .Reward[.@k], .Reward[.@k+1], .@aid[.@j];
    					message rid2name(.@aid[.@j]),"You have been rewarded for conquering "+getcastlename(.Castles$[.@i])+".";
    				}
    			}
    		}
    	if (.Options&2) query_sql("UPDATE `mail` SET message = REPLACE(message,'%',CHAR(13)) WHERE send_name = 'no-reply'");
    	return;
    
    OnPCLoadMapEvent:
    	if (!compare(strcharinfo(3),"g_cas")) end;
    	if (((.AutoKick && .Active[0]) || (.NoOwner && !getcastledata(strcharinfo(3),1))) && !(.Active[0]&(1<<getd("."+strcharinfo(3))))) {
    		if (getcharid(2) && getcastledata(strcharinfo(3),1) == getcharid(2)) end;
    		sleep2 1000;
    		message strcharinfo(0), getcastlename(strcharinfo(3))+" is currently inactive.";
    		sleep2 5000;
    		if (compare(strcharinfo(3),"g_cas")) warp "SavePoint",0,0;
    	}
    	end;
    
    OnMenu:
    while(1) {
    	mes "[WOE Information]";
    	if (agitcheck() || agitcheck2()) {
    		if (.Active[0]) {
    			for(set .@i,0; .@i<.Size; set .@i,.@i+4)
    				if (gettime(DT_DAYOFWEEK) == $WOE_CONTROL[.@i] && gettime(DT_HOUR) >= $WOE_CONTROL[.@i+1] && gettime(DT_HOUR) < $WOE_CONTROL[.@i+2]) {
    					set .@i, $WOE_CONTROL[.@i+2];
    					break;
    				}
    			mes "The War of Emperium is ^0055FFactive^000000 until ^FF0000"+Add_Zero(.@i)+"^000000 in the following regions:";
    			mes " ";
    			for(set .@i,0; .@i<6; set .@i,.@i+1)
    				if (.Active[1]&(1<<(.@i+1))) mes " > ^777777"+.Regions$[.@i]+"^000000";
    		} else
    			mes "The War of Emperium is ^0055FFactive^000000.";
    	} else {
    		for(set .@i,0; .@i<.Size; set .@i,.@i+4)
    			if ((gettime(DT_DAYOFWEEK) == $WOE_CONTROL[.@i] && gettime(DT_HOUR) <= $WOE_CONTROL[.@i+1]) || gettime(DT_DAYOFWEEK) < $WOE_CONTROL[.@i]) {
    				setarray .@time[0],$WOE_CONTROL[.@i],$WOE_CONTROL[.@i+1];
    				break;
    			}
    		if (!getarraysize(.@time))
    			setarray .@time[0],$WOE_CONTROL[0],$WOE_CONTROL[1];
    		mes "The War of Emperium is ^777777inactive^000000.";
    		if (.Size) {
    			mes " ";
    			mes "The next session will begin";
    			mes "on ^0055FF"+.Days$[.@time[0]]+"^000000 at "+Add_Zero(.@time[1])+"^000000.";
    		}
    	}
    	next;
    	switch(select(""+((.CastleWarp || .Active[1])?" ~ Warp to castles...":"")+": ~ Check schedule...: ~ View castle owners...:"+((getgmlevel()<.GMAccess || !getgmlevel())?"":" ~ Manage sessions...")+": ~ ^777777Cancel^000000")) {
    	case 1:
    		if (.CastleWarp) set .@clr$,"^0055FF";
    		set .@menu$,"";
    		for(set .@i,0; .@i<6; set .@i,.@i+1) {
    			if (.CastleWarp || .Active[1]&(1<<(.@i+1)))
    				set .@menu$, .@menu$+" ~ "+((.Active[1]&(1<<(.@i+1)))?.@clr$:"^777777")+.Regions$[.@i]+" Castles^000000";
    			set .@menu$, .@menu$+":";
    		}
    		set .@i, select(.@menu$)-1;
    		set .@menu$,"";
    		for(set .@j,.@i*5; .@j<(.@i*5)+5; set .@j,.@j+1) {
    			if (.CastleWarp || .Active[0]&(1<<.@j))
    				set .@menu$, .@menu$+" ~ "+((.Active[0]&(1<<.@j))?.@clr$:"^777777")+getcastlename(.Castles$[.@j])+"^000000";
    			set .@menu$, .@menu$+":";
    		}
    		set .@j, select(.@menu$)-1;
    		warp .Map$[.@i],.MapX[(.@i*5)+.@j],.MapY[(.@i*5)+.@j];
    		close;
    	case 2:
    		mes "[Schedule]";
    		if (.Size) {
    			freeloop(1);
    			for(set .@i,0; .@i<.Size; set .@i,.@i+4) {
    				mes "> ^FF0000"+.Days$[$WOE_CONTROL[.@i]]+" ("+Add_Zero($WOE_CONTROL[.@i+1])+"-"+Add_Zero($WOE_CONTROL[.@i+2])+")^000000";
    				for(set .@j,0; .@j<30; set .@j,.@j+1)
    					if ($WOE_CONTROL[.@i+3]&(1<<.@j)) mes "  ~ "+getcastlename(.Castles$[.@j])+" ^777777("+.Castles$[.@j]+")^000000";
    				if (.@i+4 < .Size) mes " ";
    			}
    			freeloop(0);
    		} else
    			mes "No times are configured.";
    		next;
    		break;
    	case 3:
    		mes "[Castle Ownership]";
    		for(set .@i,0; .@i<6; set .@i,.@i+1) {
    			set .@k, .@i*5;
    			mes "> ^FF0000"+.Regions$[.@i]+"^000000";
    			for(set .@j,.@k; .@j<(.@k+5); set .@j,.@j+1) { 
    				set .@t, getcastledata(.Castles$[.@j],1);
    				mes "  ~ "+getcastlename(.Castles$[.@j])+": "+((.@t)?"^0055FF"+getguildname(.@t):"^777777unoccupied")+"^000000";
    			}
    			if (.@i < 5) mes " ";
    		}
    		next;
    		break;
    	case 4:
    	while(1) {
    		mes "[Session Manager]";
    		mes "There are ^0055FF"+(.Size/4)+" session(s)^000000 configured.";
    		mes "What would you like to do?";
    		next;
    		switch(select(" ~ Add a session...: ~ Delete a session...: ~ Reload settings...:"+((agitcheck() || agitcheck2())?" ~ End WOE session...":"")+": ~ ^777777Go back^000000")) {
    		case 1:
    			mes "[New Session]";
    			if (.Size > 127) {
    				mes "You have already reached the maximum of 32 sessions.";
    				next;
    				break;
    			}
    			mes "Select a day.";
    			next;
    			set .@Day, select(" ~ "+implode(.Days$,": ~ "))-1;
    			mes "[New Session]";
    			mes "Select a start time for ^0055FF"+.Days$[.@Day]+"^000000.";
    			next;
    			set .@menu$,"";
    			for(set .@i,0; .@i<23; set .@i,.@i+1)
    				set .@menu$, .@menu$+" ~ "+Add_Zero(.@i,1)+":";
    			set .@Start, select(.@menu$)-1;
    			mes "[New Session]";
    			mes "Select an end time for ^0055FF"+.Days$[.@Day]+"^000000.";
    			next;
    			set .@menu$,"";
    			for(set .@i,.@Start+1; .@i<24; set.@i,.@i+1)
    				set .@menu$, .@menu$+" ~ "+Add_Zero(.@i,1)+":";
    			set .@End, select(.@menu$)+.@Start;
    			for(set .@i,0; .@i<.Size; set .@i,.@i+4)
    				if (.@Day == $WOE_CONTROL[.@i] &&
    				   ((.@Start >= $WOE_CONTROL[.@i+1] && .@Start < $WOE_CONTROL[.@i+2]) ||
    				    (.@End > $WOE_CONTROL[.@i+1] && .@End <= $WOE_CONTROL[.@i+2]) ||
    				    (.@Start <= $WOE_CONTROL[.@i+1] && .@End >= $WOE_CONTROL[.@i+2]))) {
    					mes "[New Session]";
    					mes "The chosen times overlap with an existing session.";
    					next;
    					set .@d,1;
    					break;
    				}
    			if (.@d) { set .@d,0; break; }
    			set .@Castle,0;
    			while(1) {
    				mes "[New Session]";
    				mes "^0055FF"+.Days$[.@Day]+" ("+Add_Zero(.@Start)+"-"+Add_Zero(.@End)+")^000000";
    				mes " > Castles:";
    				if (!.@Castle)
    					mes "   ~ ^777777(none selected)^000000";
    				else for(set .@i,0; .@i<30; set .@i,.@i+1)
    					if (.@Castle&(1<<.@i)) mes "   ~ "+getcastlename(.Castles$[.@i])+" ("+.Castles$[.@i]+")";
    				next;
    				set .@menu$,((.@Castle)?" ~ ^FF0000Finished...^000000":"")+":";
    				for(set .@i,0; .@i<30; set .@i,.@i+1)
    					set .@menu$, .@menu$+" ~ "+((.@Castle&(1<<.@i))?"^0055FF":"")+getcastlename(.Castles$[.@i])+" ("+.Castles$[.@i]+")^000000:";
    				set .@i, select(.@menu$)-1;
    				if (.@i)
    					set .@Castle, .@Castle^(1<<(.@i-1));
    				else {
    					mes "[New Session]";
    					mes "Are you sure?";
    					next;
    					switch(select(" ~ ^0055FFAdd session...^000000: ~ Continue selecting castles...: ~ ^777777Cancel^000000")) {
    					case 1:
    						for(set .@i,0; .@i<.Size; set .@i,.@i+4)
    							if ((.@Day == $WOE_CONTROL[.@i] && .@End <= $WOE_CONTROL[.@i+1]) || .@Day < $WOE_CONTROL[.@i]) {
    								set .@d,1;
    								break;
    							}
    						if (!.@d) { set .@d,1; set .@i,.Size; }
    						copyarray $WOE_CONTROL[.@i+4], $WOE_CONTROL[.@i], .Size-.@i;
    						setarray $WOE_CONTROL[.@i], .@Day, .@Start, .@End, .@Castle;
    						set .Size, getarraysize($WOE_CONTROL);
    					case 3:
    						mes "[New Session]";
    						mes ((.@d)?"Session added.":"cancelled.");
    						next;
    						set .@d,1;
    					case 2:
    						break;
    					}
    					if (.@d) { set .@d,0; break; }
    				}
    			}
    			break;
    		case 2:
    			mes "[Remove Session]";
    			if (!.Size) {
    				mes "There are no sessions configured.";
    				next;
    				break;
    			}
    			mes "Select a session to remove.";
    			next;
    			set .@menu$,"";
    			for(set .@i,0; .@i<.Size; set .@i,.@i+4)
    				set .@menu$, .@menu$+" ~ "+.Days$[$WOE_CONTROL[.@i]]+" ("+Add_Zero($WOE_CONTROL[.@i+1],1)+"-"+Add_Zero($WOE_CONTROL[.@i+2],1)+"):";
    			set .@menu$, .@menu$+" ~ ^777777Cancel^000000";
    			set .@i, select(.@menu$)-1;
    			if (.@i == (.Size/4)) break;
    			mes "[Remove Session]";
    			mes "Delete ^0055FF"+.Days$[$WOE_CONTROL[.@i*4]]+"'s^000000 session?";
    			mes "This action cannot be undone.";
    			next;
    			set .@j, select(" ~ ^FF0000Delete session...^000000: ~ ^777777Cancel^000000");
    			mes "[Remove Session]";
    			if (.@j == 2)
    				mes "cancelled.";
    			else {
    				deletearray $WOE_CONTROL[.@i*4],4;
    				set .Size, getarraysize($WOE_CONTROL);
    				mes "Session deleted.";
    			}
    			next;
    			break;
    		case 3:
    			mes "[Reload Settings]";
    			mes "This will trigger all events related to new session configurations, if any.";
    			if (agitcheck() || agitcheck2()) {
    				mes " ";
    				mes "Be aware that this will disrupt the current WOE session.";
    			}
    			next;
    			set .@i, select(" ~ ^0055FFReload settings...^000000: ~ ^777777Cancel^000000");
    			mes "[Reload Settings]";
    			if (.@i == 2) mes "cancelled.";
    			else {
    				set .Init,1;
    				donpcevent "WOE_CONTROL::OnMinute00";
    				mes "Variables have been re-initialized.";
    			}
    			next;
    			break;
    		case 4:
    			mes "[Force Agit End]";
    			if (!agitcheck() && !agitcheck2())  {
    				mes "WOE has already ended.";
    				next;
    				break;
    			}
    			mes "This command will safely execute all AgitEnd events.";
    			mes " ";
    			mes "Kill the current WOE session?";
    			next;
    			set .@i, select(" ~ ^FF0000End session...^000000:"+((.Options&1)?" ~ ^FF0000End session without rewards...^000000":"")+": ~ ^777777Cancel^000000");
    			mes "[Force Agit End]";
    			if (.@i == 3)
    				mes "cancelled.";
    			else {
    				set .ForceEnd, .@i;
    				donpcevent "WOE_CONTROL::OnWOEEnd";
    				mes "WOE session terminated.";
    			}
    			next;
    			break;
    		case 5:
    			set .@d,1; break;
    		}
    		if (.@d) { set .@d,0; break; }
    		} break;
    	case 5:
    		close;
    	} }
    }

     

    I have created a basic script that helps in these cases.
    The "WoE Controller" has 1 hour intervals, but check out my solution.

     

    aru_gld,1,1,1	script	warp30min	-1,{
    
    OnClock1559:
    if( gettime(4) == 0)
    	{	
    		sleep 10;
    		atcommand "@hidenpc arug102";
    	}
    end;
    
    OnClock1600:
    if( gettime(4) == 0)
    	{
    		sleep 5000;
    		announce "[War Of Emperium SE]: They will be able to start the battle for the castle at 4:30 p.m. Get ready, 30 minutes left!",bc_all|bc_woe;
    	}
    end;
    
    OnClock1630:
    if( gettime(4) == 0)
    	{
    		sleep 10;
    		atcommand "@shownpc arug102";
    		announce "[War Of Emperium SE]: Castle war begins now!",bc_all|bc_woe;
    	}
    end;
    }			

    What it does is disable the WarpPortal from the entrance of a specific castle (arug_cas01), enabling it after 30 minutes.
    In this case it is for Sunday. It is easy to edit.

    WoE normal. 4:00 p.m. to 6:00 p.m. Entry from 4:30 p.m. to 6:00 p.m.

  9. On 7/3/2019 at 8:08 PM, Functor said:

    @masterzeus Open "../src/map/pet.cpp" and in the function "pet_ai_sub_hard" change:

    if(!target && pd->loot && pd->loot->count < pd->loot->max && DIFF_TICK(tick,pd->ud.canact_tick) > 0) {

    to:

    if (!target && pd->loot && pd->loot->count < pd->loot->max && !pc_isdead(pd->master) && DIFF_TICK(tick,pd->ud.canact_tick) > 0) {

    Save changes and recompile the server.

    Nice, Functor!
    Its work!
    Thanks!!!

  10. I have a problem with pets, these are currently "looting" with the owner dead ... Which thing should not be, do not throw me any errors in the console.

    What can be?
    I also checked the pets.conf in the battle folder.

×
×
  • Create New...

Important Information

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