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!

[VS22] Full Setup Guide For Ketchup Files

Newbie Spellweaver
Joined
Sep 24, 2021
Messages
36
Reaction score
2
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

kCommon.h is same with ServerCommon.h?
 
Joined
Feb 27, 2011
Messages
420
Reaction score
163
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

C1083 Cannot open include file: 'afxwin.h': No such file or directory WorldServer C:\Users\AMOS PC\Downloads\K18\Source\Source\WorldServer\stdafx.h 27
 
Newbie Spellweaver
Joined
Sep 24, 2021
Messages
36
Reaction score
2
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

i made it run smooth then i tried to make it in Hamachi and go online, i put my hamachi ip in account, cache server and loginserver.ini, compiled source again with same port with cache and hamachi ip. the problemis i cannot connect ingame using my local pc
Groxy101 - [VS22] Full Setup Guide For Ketchup Files - RaGEZONE Forums

Groxy101 - [VS22] Full Setup Guide For Ketchup Files - RaGEZONE Forums
 
Last edited:
Inactive
Joined
Jan 20, 2009
Messages
1,015
Reaction score
1,830
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

i made it run smooth then i tried to make it in Hamachi and go online, i put my hamachi ip in account, cache server and loginserver.ini, compiled source again with same port with cache and hamachi ip. the problemis i cannot connect ingame using my local pc
Groxy101 - [VS22] Full Setup Guide For Ketchup Files - RaGEZONE Forums

Groxy101 - [VS22] Full Setup Guide For Ketchup Files - RaGEZONE Forums

You should really re-read the guide.

In 8.2.5 in BOLD red lettering it says: DON'T CHANGE THE 127.0.0.1 in "CacheServer.ini"

The only ip's that are changed are in AccountServer.ini, kCommon.h, LoginServer.ini
 
Newbie Spellweaver
Joined
Sep 24, 2021
Messages
36
Reaction score
2
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

sorry, just check it and i didnt change the cache



the problem is just the same it cannot connect just stays on that screen
 
Inactive
Joined
Jan 20, 2009
Messages
1,015
Reaction score
1,830
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

sorry, just check it and i didnt change the cache



the problem is just the same it cannot connect just stays on that screen

Make sure the ip is changed in kCommon.h and that you have recompiled the Neuz and moved it to your client.
 
Newbie Spellweaver
Joined
Sep 24, 2021
Messages
36
Reaction score
2
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

do i need to port forward if im using hamachi?
 
Newbie Spellweaver
Joined
Sep 24, 2021
Messages
36
Reaction score
2
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

how to fix this sir ketchup? i attached a file
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Sep 24, 2021
Messages
36
Reaction score
2
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

I just deleted all database and set it up again
I tried to use VIP 1 Day access ingame, open guild npc to see ranking then world server crashes. Thats the error it gives
 
Newbie Spellweaver
Joined
Apr 9, 2021
Messages
31
Reaction score
3
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

Hello, I have just completed your entire tutorial with all the software indicated and when pumping the neuz an error message appears: MSB6006 Stopping "fxc.exe" with code 1.I do not know how to solve it, in any case thank you for this tutorial which is really great!sorry for the google translate and thanks for your help
 
Inactive
Joined
Jan 20, 2009
Messages
1,015
Reaction score
1,830
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

Hello, I have just completed your entire tutorial with all the software indicated and when pumping the neuz an error message appears: MSB6006 Stopping "fxc.exe" with code 1.I do not know how to solve it, in any case thank you for this tutorial which is really great!sorry for the google translate and thanks for your help

You did not install VS2019 correctly. Reinstall it and double check the settings.
 
Inactive
Joined
Jan 20, 2009
Messages
1,015
Reaction score
1,830
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

Thanks for this share im running it now im just confused on some GM Commands do you have the the Exact and Right GM commands for this server
I tried this https://forum.ragezone.com/f651/item-code-gm-commands-544525/
but most of them doesnt work
i use / instead of .

https://forum.ragezone.com/f651/flyff-v15-gm-commands-706134-post6009736/#post6009736
https://forum.ragezone.com/f651/help-v15-gm-commands-673889-post5779315/#post5779315
 
Newbie Spellweaver
Joined
Nov 3, 2019
Messages
23
Reaction score
1
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

First of all thank you for uploading this tutorial it was extremely straight forward and definitely an upgrade from cuuvies outdated source. I am running into a small problem though, I just started editing the EventFunc.Lua to change exp/drop rates etc. and after compiling and moving the compiles to my program folder the rates still aren't changing in-game, I'm sure I'm just being overtired and dumbly looking over something, any hints on what I might be doing wrong?
 
Inactive
Joined
Jan 20, 2009
Messages
1,015
Reaction score
1,830
Re: [FULL SETUP GUIDE] Ketchup VS2019 files

First of all thank you for uploading this tutorial it was extremely straight forward and definitely an upgrade from cuuvies outdated source. I am running into a small problem though, I just started editing the EventFunc.Lua to change exp/drop rates etc. and after compiling and moving the compiles to my program folder the rates still aren't changing in-game, I'm sure I'm just being overtired and dumbly looking over something, any hints on what I might be doing wrong?

There are a few ways you can edit the exp and stuff. You can use EventFunc.lua or create an event in Event.lua.

In Event.lua you can add an event like this:
Code:
AddEvent( "My Cool Event" )
--{
	SetTime( "2000-09-25 00:00", "2099-09-25 21:59" )
	SetExpFactor( 5 )
	SetItemDropRate( 5 )
	SetPieceItemDropRate( 5 )
	SetGoldDropFactor( 5 )
--}

In EventFunc.lua you need to edit the following:
Code:
function GetExpFactor()
	local tList = GetEventList()
	local fExpFactor = 5
	for i in pairs(tList) do
		if( tEvent[tList[i]].fExpFactor ~= nil ) then
			fExpFactor = fExpFactor * tEvent[tList[i]].fExpFactor
		end
	end
	
	return fExpFactor
end

function GetItemDropRate()
	local tList = GetEventList()
	local fItemDropRate = 5
	for i in pairs(tList) do
		if( tEvent[tList[i]].fItemDropRate ~= nil ) then
			fItemDropRate = fItemDropRate * tEvent[tList[i]].fItemDropRate
		end
	end
	
	return fItemDropRate
end

function GetPieceItemDropRate()
	local tList = GetEventList()
	local fPieceItemDropRate = 5
	for i in pairs(tList) do
		if( tEvent[tList[i]].fPieceItemDropRate ~= nil ) then
			fPieceItemDropRate = fPieceItemDropRate * tEvent[tList[i]].fPieceItemDropRate
		end
	end
	
	return fPieceItemDropRate
end

function GetGoldDropFactor()
	local tList = GetEventList()
	local fGoldDropFactor = 5
	for i in pairs(tList) do
		if( tEvent[tList[i]].fGoldDropFactor ~= nil ) then
			fGoldDropFactor = fGoldDropFactor * tEvent[tList[i]].fGoldDropFactor
		end
	end
	
	return fGoldDropFactor
end

The 5 is what you want to change in either of these.

Also after saving the lua make sure you reboot your server entirely.
 
Back
Top