Skip to content
#

mmorpg

Here are 393 public repositories matching this topic...

azerothcore-wotlk
BarbzYHOOL
BarbzYHOOL commented Nov 27, 2020

Just a quick refactor idea, when we load (and reload) tables, it says

         sLog->outString("Re-Loading smthg definitions...");
  1. Imo we should replace "smthg" by something close to the table name or the exact table name
  2. We should replace "definitions" by "rows" as we are simply loading rows from the DB, no need to try to sound more intelligent than needed, let's be clear

Re

jerryb1988
jerryb1988 commented Mar 9, 2017

I'm just submitting this as a feature/improvement. I modded login.lua and added the following code before registering the events.

	-- Fix HP/Mana/Cap to match CIP, assume player left rook at level 8
	if player:getVocation():getId() == 0 then
		
		calchp = 5 * (player:getLevel() + 29)
		calcmana = 5 * (player:getLevel() + 10)
		calccap = 10 * (player:getLevel() + 39)
		
	elseif playe

Hercules is a collaborative software development project revolving around the creation of a robust massively multiplayer online role playing game (MMORPG) server package. Written in C, the program is very versatile and provides NPCs, warps and modifications. The project is jointly managed by a group of volunteers located around the world as well as a tremendous community providing QA and support. Hercules is a continuation of the original Athena project.

  • Updated Dec 10, 2020
  • C++

游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D客户端,客户端含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。

  • Updated Dec 4, 2020
  • C++
Core-Framework
Eastrall
Eastrall commented Sep 11, 2020

The FLYFF client tries to connect to the world server using the default 5400 port. This implies that the world servers cannot be hosted on the same machine.

In order to improve flexibility, Rhisis should provide an option to send the world servers port to the client once the CERTIFY packet is handled in the LoginServer.

mchekin
mchekin commented Sep 13, 2020

Currently only synchronous request errors are reported inside a Blade template.
https://github.com/mchekin/rpg/blob/master/resources/views/partials/errors.blade.php#L5

But the Vue components, which use Axios for asynchronous API calls, do not report notify the end-user in case of API call failure.
https://github.com/mchekin/rpg/blob/master/resources/js/components/StoreManagement.vue#L320

W

Improve this page

Add a description, image, and links to the mmorpg topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the mmorpg topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.