This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Messages - stoneharry
2
« on: January 13, 2019, 04:19:20 pm »
4
« on: July 13, 2017, 09:55:15 pm »
I did some tests with changing the game speed here: local currentTime = os.clock() local lastTime = nil -- (60 minutes * 4 hours) * 0.1 = 24 local newHoursPerMinute = 0.1 * 10 * 5 local normalHoursPerMinute = 0.01666667
function Player:UpdateTimeSpeed() local p = CreatePacket(66, 12) -- SMSG_LOGIN_SETTIMESPEED p:WriteULong(currentTime / 1000) -- time p:WriteFloat(newHoursPerMinute) -- speed p:WriteULong(0) self:SendPacket(p) end
local function timeIncrementer(_, _, _) --print("----------------") --print("-- Updating Time") local functionTime = os.clock() local diffInMs = functionTime - (lastTime or 0) local update = (normalHoursPerMinute / newHoursPerMinute) * diffInMs --print("diffInMs: " .. tostring(diffInMs)) --print("update: " .. tostring(update)) --print("newTime: " .. tostring(currentTime + update)) currentTime = currentTime + update lastTime = os.clock() -- hack debug --[[local plrs = GetPlayersInWorld(2) if plrs then for _,v in pairs(plrs) do if v then v:UpdateTimeSpeed() end end end]] end
CreateLuaEvent(timeIncrementer, 10000, 0)
-- On every zone change (i.e: login, etc) resend time
local function PLAYER_EVENT_ON_UPDATE_ZONE(event, player, newZone, newArea) if player then player:UpdateTimeSpeed() end end
RegisterPlayerEvent(27, PLAYER_EVENT_ON_UPDATE_ZONE)
-- Debugging
local function PLAYER_EVENT_ON_CHAT_TIKKI(event, plr, msg, _type, lang) if not plr:IsGM() then return end if (msg == "#time") then plr:UpdateTimeSpeed() return false end end
RegisterPlayerEvent(18, PLAYER_EVENT_ON_CHAT_TIKKI)
https://github.com/stoneharry/ZombiesProject/blob/master/Server%20Scripts/Systems/TimeSystem.disabled
5
« on: April 04, 2017, 07:32:07 pm »
6
« on: March 07, 2017, 10:24:42 pm »
Yes, this is much better than the previous setup. Good work. Can we get a shoutbox back now?
7
« on: February 14, 2017, 07:15:24 pm »
This is the problem when you get small-time developers wanting to start up their own emulation board. You lose the resource. Every time.
9
« on: December 23, 2016, 10:21:27 pm »
How you are going than to fly without the flight masters gossip menu ?
Normally the client crashs if players haven't installed a proper custom patch. And the client needs the DBC data to create a visual flight map.
So, practically you need a client modification. Otherwise there is no fun. You can activate flight paths through other methods than a flight master menu, just for example: http://www.wowhead.com/search?q=taxi#spells
10
« on: December 23, 2016, 04:12:53 pm »
Custom flight paths needs some work on DBCs, client and server side.
What have you done exactly and which tutorial did you follow ? Well, technically, no. Flight paths can be done entirely server side. To make flight masters with the gossip menu, that requires client side edits. Transports (for example, ships) need the client side data also.
11
« on: December 18, 2016, 12:45:22 pm »
It doesn't matter if I modify the files or not, it gives the same error. You might be modifying an outdated version of the interface file. Think you want the one from patch-xxXX-2.MPQ
Thank you. Now if I put this files in the game as they were, there is no error.
All I need to figure out now is how to delete a race. I tried dbc, it's not working, it only makes it unsuable but still selectable. Same thing with worldserver.conf . I think it's charactercreate.xml but I can't find what I need
It is charactercreate xml that you need to modify. It defines a series of buttons for each race. You can't just delete them because other places reference this and it will error, but you could easily hide all the buttons apart from one (button:Hide()).
14
« on: July 30, 2016, 01:55:09 pm »
 I want to add Version Info, Logo and Breaking news...How would i do that?
Logo = texture. http://wowwiki.wikia.com/wiki/Widget_APIVersion info = AccountLogin.lua, change how the function behaves in the binary that gets the version info or just handle and display some stuff based on some logic in the Lua code. Breaking news: viewtopic.php?f=61&t=778
15
« on: July 21, 2016, 08:28:40 pm »
MySQL is software for managing data. A query-able relational database.
The MySQL server software is being distributed with the repack and is in another location apparently. You can have as many MySQL installations as you want but only one can run on a single port at once. 3306 is the default port, but if you need multiple MySQL servers running you can configure them to run on a different port.
Your emulator, included in a repack, connects to and uses a MySQL server. You can have many different databases on a single MySQL server. You need to find out the connection details to your repacks MySQL server, you can grab that out of the world and auth configuration files.
You can export databases in one MySQL server and reimport them to the other easily enough.
All of this information can be found on google.
|