-
Updated
Aug 30, 2020 - C++
mmorpg
Here are 367 public repositories matching this topic...
-
Updated
Aug 20, 2020 - C
-
Updated
Aug 31, 2020 - C++
-
Updated
Aug 30, 2020 - C++
Concept
We need a function in the config manager to easily extract values from a string list.
Ex: "1,2,3,4" or "1, 2, 3, 4"
In the module conf:
MyModule.List = "1, 2, 3, 4"
In the module cpp:
sConfigMgr->GetUint32ListDefault("MyModule.List", "")Actually, everytime we want to make a list, we have to recreate a similar function in our modules. This is very bad
Maybe
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
-
Updated
Aug 26, 2020 - C++
-
Updated
Aug 28, 2020 - C++
-
Updated
Apr 26, 2020 - TSQL
-
Updated
Aug 28, 2020 - C++
-
Updated
Jul 4, 2020 - C#
What is the current behavior?
When you are on top of an NPC and want to trade/shop/bank with them. The popup screen will not popup UNTIL you move and FINISH its progress.
**If the current behavior is a bug, please provide
-
Updated
Aug 29, 2020 - C#
-
Updated
Mar 12, 2018 - ActionScript
-
Updated
Aug 8, 2020 - C++
-
Updated
Aug 30, 2020 - Java
-
Updated
Aug 30, 2020 - C#
-
Updated
Aug 31, 2020 - C++
-
Updated
May 10, 2020 - C++
Describe the bug
Missing notably civilians and citizens - needs auditing. This bug includes missing the level 18 civilian that trades cat for death runes.
Additional context
Dialogues most likely need placing as well
-
Updated
Aug 22, 2020 - PHP
-
Updated
Feb 16, 2020 - PHP
-
Updated
Aug 19, 2020 - C#
Improve this page
Add a description, image, and links to the mmorpg topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the mmorpg topic, visit your repo's landing page and select "manage topics."



Describe the bug
If startOnHeadless is true it start a server even if one has already started. This is because it runs in start so is later than other code that runs in awake.
Expected behavior
NetworkManager should check if Server is active (or is in offlinemode) before calling
StartServer