Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

After adding the code from the resources of danger do not run a GameServer.exe

Junior Spellweaver
Joined
Dec 6, 2015
Messages
116
Reaction score
34
After adding the code from the resources of danger do not run a GameServer.exe

PHP:
__inline __declspec(naked) void Price()
{   
    _asm
    {	
//==========================================//
//					Coins					//
//==========================================//
		// Bronze Coin
        MOV EDX,DWORD PTR SS:[EBP-0x04]
        MOVSX EAX,WORD PTR DS:[EDX+0x06]
        CMP EAX,ITEMGET(14,89) 
        JNZ Item1
		MOV ECX, BronzeCoin
        MOV DWORD PTR SS:[EBP-0x14], ECX 
        MOV DWORD PTR SS:[EBP-0x10], 0x00
        JMP Exit 
Item1:	// SilverCoin
        MOV EDX,DWORD PTR SS:[EBP-0x04]
        MOVSX EAX,WORD PTR DS:[EDX+0x06]
        CMP EAX,ITEMGET(14,90) 
        JNZ Item2
		MOV ECX, SilverCoin
        MOV DWORD PTR SS:[EBP-0x14], ECX 
        MOV DWORD PTR SS:[EBP-0x10], 0x00
        JMP Exit 
Item2:	// GoldenCoin
        MOV EDX,DWORD PTR SS:[EBP-0x04]
        MOVSX EAX,WORD PTR DS:[EDX+0x06]
        CMP EAX,ITEMGET(14,91) 
        JNZ Item3
		MOV ECX, GoldenCoin
        MOV DWORD PTR SS:[EBP-0x14], ECX 
        MOV DWORD PTR SS:[EBP-0x10], 0x00
        JMP Exit 
Item3:	// PlatinumCoin
        MOV EDX,DWORD PTR SS:[EBP-0x04]
        MOVSX EAX,WORD PTR DS:[EDX+0x06]
        CMP EAX,ITEMGET(14,92) 
        JNZ Item4
		MOV ECX, PlatinumCoin
        MOV DWORD PTR SS:[EBP-0x14], ECX 
        MOV DWORD PTR SS:[EBP-0x10], 0x00
        JMP Exit
Item4:	// JewelofSkill
        MOV EDX,DWORD PTR SS:[EBP-0x04]
        MOVSX EAX,WORD PTR DS:[EDX+0x06]
        CMP EAX,ITEMGET(14,102) 
        JNZ Item5
		MOV ECX, JewelofSkill	//Price
        MOV DWORD PTR SS:[EBP-0x14], ECX 
        MOV DWORD PTR SS:[EBP-0x10], 0x00
        JMP Exit
Item5:	// JewelOfElement
        MOV EDX,DWORD PTR SS:[EBP-0x04]
        MOVSX EAX,WORD PTR DS:[EDX+0x06]
        CMP EAX,ITEMGET(14,103) 
        JNZ Item6
		MOV ECX, JewelOfElement	//Price
        MOV DWORD PTR SS:[EBP-0x14], ECX 
        MOV DWORD PTR SS:[EBP-0x10], 0x00
        JMP Exit
Item6:	// JewelOflevel
        MOV EDX,DWORD PTR SS:[EBP-0x04]
        MOVSX EAX,WORD PTR DS:[EDX+0x06]
        CMP EAX,ITEMGET(14,104) 
        JNZ Continue
		MOV ECX, JewelOflevel	//Price
        MOV DWORD PTR SS:[EBP-0x14], ECX 
        MOV DWORD PTR SS:[EBP-0x10], 0x00
        JMP Exit*
Exit:
        mov esi,0x005F3B7F
        jmp esi
Continue:
		mov esi,0x005F2AD3
		jmp esi
    }
}

What could be the problem ?
Files Exillum Season 3 (Reedlan)
 
Back
Top