12458 Commits

Author SHA1 Message Date
KimLS
492d848f6a adjust offsets by 2 in OP_LogServer on tob, I had done it simply from assembly and misread the register and it's off by 2 for each one. 2026-04-09 20:41:40 -07:00
KimLS
30c9c6317f Update OP_LogServer
Fix the source group matching in common lib
Added a couple packet structure documentations I had looked at.
2026-04-06 20:51:52 -07:00
Alex
c7eea72997
Merge pull request #5057 from dannuic/tob_charactercreate
Implemented through character creation packets
2026-04-06 14:51:18 -07:00
dannuic
28e6ef29d4 Corrected missing find/replace for steam_latest 2026-04-06 16:23:06 -05:00
dannuic
a6f4438c0d Removed the _t for consistency 2026-04-06 16:15:20 -05:00
dannuic
e5a111d8d8 Implemented through character creation packets 2026-04-06 16:09:59 -05:00
KimLS
abbaf6f9a1 update opcodes 2026-04-04 16:47:41 -07:00
KimLS
ccdc9f2e43 fix dumb compile errors from my hand merge 2026-04-04 15:48:43 -07:00
KimLS
a9effc7bac A couple laurion renames i missed 2026-04-04 15:28:59 -07:00
KimLS
a2b3b36cf1 WIP, porting old laurion changes to tob 2026-04-04 15:11:21 -07:00
KimLS
75ddf8dfc3 Merge branch 'master' into obr_login 2026-04-04 14:14:47 -07:00
Knightly
435224631f
Lua: Add world_wide_add_ldon_win & events (#5054)
Some checks are pending
Build / Linux (push) Waiting to run
Build / Windows (push) Waiting to run
2026-04-04 11:15:05 -07:00
KimLS
a3802ff257 opcode fixes 2026-04-02 11:50:08 -07:00
Knightly
48d18aa62a Update Readme for license changes
Some checks failed
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
2026-04-01 17:09:57 -07:00
Knightly
7ab909ee47 Standardize Licensing
- License was intended to be GPLv3 per earlier commit of GPLv3 LICENSE FILE
- This is confirmed by the inclusion of libraries that are incompatible with GPLv2
- This is also confirmed by KLS and the agreement of KLS's predecessors
- Added GPLv3 license headers to the compilable source files
- Removed Folly licensing in strings.h since the string functions do not match the Folly functions and are standard functions - this must have been left over from previous implementations
- Removed individual contributor license headers since the project has been under the "developer" mantle for many years
- Removed comments on files that were previously automatically generated since they've been manually modified multiple times and there are no automatic scripts referencing them (removed in 2023)
2026-04-01 17:09:57 -07:00
Knightly
287d4a66dc Fixup CMakePresets.json
- Fix vcpkg presetName variable evaluation
- Remove tabs & fix alignment
2026-04-01 16:57:28 -07:00
KimLS
ca23b8612e WIP world select packets 2026-03-30 21:54:15 -07:00
KimLS
485ae4809d some changes, working on login 2026-03-30 18:36:13 -07:00
KimLS
452407ed67 Fix seq in on login handshake 2026-03-26 21:59:53 -07:00
KimLS
aa1c481f65 update opcodes 2026-03-26 13:01:24 -07:00
KimLS
780dcdab5a Renamed "larion" to "steam latest" 2026-03-26 12:50:46 -07:00
KimLS
16ec08e71c Some investigation on packets, mostly the same as rof2 / laurion but not entirely. 2026-03-25 18:08:46 -07:00
KimLS
0024073cee Login exploration 2026-03-24 23:59:42 -07:00
KimLS
37b8428c48 Starting research 2026-03-24 23:22:08 -07:00
straps-eq
5bedbc18c4 Enhance quantity validation for stackable items
Some checks failed
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
Added handling for zero/negative quantity purchases for stackable items.
2026-03-16 18:39:50 -07:00
nytmyr
7c026ab25c [Bots] Make expansion settings universal
Some checks failed
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
Expansion Bitmask settings were saved by stances and should be universal for the bot.

This addresses that as well as moves the data back to the `bot_data` table instead of the `bot_settings` table.

This will check current settings saved and take the highest value of the stances to save to `bot_data`, if none are found (default), it will use the value from the rule `Bots:BotExpansionSettings`
2026-02-25 10:50:15 -08:00
Claude
024abf74a8 Fix inventory overflow bug overwriting equipment slot 0
Some checks failed
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
FindFirstFreeSlotThatFitsItem was returning 0 instead of INVALID_INDEX
when no free slot was found. This caused items to be placed in slot 0
(charm equipment slot) when inventory was full, overwriting equipped items.

Changes:
- Fix FindFirstFreeSlotThatFitsItem to return INVALID_INDEX when no slot found
- Add defensive check in PutItemInInventoryWithStacking to protect equipment
  slots 0-22 from being targeted for item placement
2026-01-27 18:42:02 -08:00
JJ
9d2cc213ce Fix Build Status link in README.md
Some checks failed
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
2026-01-08 14:51:25 -08:00
JJ
bf69182a62 Revise README for updated documentation and links
Updated links and images in the README to reflect the new EQEmu documentation site and repository.
2026-01-08 14:51:25 -08:00
Knightly
be493435cb Fix Shared Memory in Windows
Some checks failed
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
- Windows does not allow paths as mutexes
- Remove the config directory from the mutex name
- This fix has the potential for collision of concerns on Windows when running multiple instances, but it is an unlikely scenario given port requirements
2025-12-26 21:28:43 -08:00
brainiac
af6c3ec97d Fix undefined behavior in log aliases
making an inline global variable doesn't work around the fact that this
variable still has to be initialized at some point.

Unfortunately, logging may be called upon during static init because we
use rules inside of static initializers, and rules can log.

So we must always retrieve the logger when we want to log something. it
should be fairly cheap anyways.
2025-12-26 20:58:07 -08:00
brainiac
b56c2421b4 normalize includes: queryserv 2025-12-26 20:58:07 -08:00
brainiac
fe0682de9f More fixes: luabind 2025-12-26 20:58:07 -08:00
brainiac
5bef8b63e8 Remove unused world/main.h
It was being used by zone commands to forward declare the signal function :(
2025-12-26 20:58:07 -08:00
brainiac
f49c8ae0bd Add EQEMU_MSVC_DEBUG_CRT option to cmake 2025-12-26 20:58:07 -08:00
brainiac
2bff404d22 normalize includes: gm commands 2025-12-26 20:58:07 -08:00
brainiac
2af5f99fff normalize includes: loginserver 2025-12-26 20:58:07 -08:00
brainiac
d6f4904351 normalize includes: bot commands 2025-12-26 20:58:07 -08:00
brainiac
7fe49b5630 normalize includes: zone 2025-12-26 20:58:07 -08:00
brainiac
552a908f92 normalize includes: world 2025-12-26 20:58:07 -08:00
brainiac
6314b386ef add include dirs to luabind 2025-12-26 20:58:07 -08:00
brainiac
3d7101876f normalize includes: common 2025-12-26 20:58:07 -08:00
brainiac
c191ec02d4 remove global_define.h and adjust platform header includes
- Remove unused MRMutex
- Remove unused generate_key
2025-12-26 20:58:07 -08:00
brainiac
b95016c92f remove global_define.h: queryserv & shared_memory 2025-12-26 20:58:07 -08:00
brainiac
ed2344dc99 normalize includes: ucs 2025-12-26 20:58:07 -08:00
brainiac
b7fcee632e normalize includes: loginserver 2025-12-26 20:58:07 -08:00
brainiac
360e01d824 add new platform headers to simplify including windows/posix headers 2025-12-26 20:58:07 -08:00
brainiac
ab1edbf537 Remove unused and unmaintained sources 2025-12-26 20:58:07 -08:00
brainiac
260042a429 normalize includes: common 2025-12-26 20:58:07 -08:00
brainiac
6fd4a7d620 normalize includes: common/repositories 2025-12-26 20:58:07 -08:00