No description
Find a file
Emagi 6fbc15029d - Fixed Cure not working if there was no levels table on the detrimental spell
- Fix #329 /cureplayer implementation (minus RAID support)
update commands set handler=531 where command='cureplayer';

- cures will now remove the maintained spell of the caster if all targets are gone
- target support for item scripts 'used' function, eg.

function used(Item, Player, Target)
    -- do stuff
end

- effect_type added to items table, currently used to map to cure types
alter table items add column effect_type int(10) unsigned not null default 0;

	NO_EFFECT_TYPE=0,
	EFFECT_CURE_TYPE_ALL=1,
	EFFECT_CURE_TYPE_ARCANE=2,
	EFFECT_CURE_TYPE_TRAUMA=3,
	EFFECT_CURE_TYPE_NOXIOUS=4,
	EFFECT_CURE_TYPE_CURSE=5,
	EFFECT_CURE_TYPE_MAGIC=6
- created sample cure using item id 48868 Translucent Remedy of the Gods
update items set lua_script='ItemScripts/cure_test.lua' where id=48868;
update items set usable=1,effect_type=1 where id=48868;
I know, not the items real purpose, but this was just a fun test since the other effect cure types would be specific to the type
- removed dump packet of lower layer packet opcode 3 (reduce noise in console)
2022-07-01 18:12:45 -04:00
cmake Add CMake for root + Login/WorldServer 2020-09-06 13:18:17 -05:00
Content @xonos icon extraction 2020-03-12 17:50:24 -04:00
DB - Fixed Cure not working if there was no levels table on the detrimental spell 2022-07-01 18:12:45 -04:00
EQ2 - Fixed Cure not working if there was no levels table on the detrimental spell 2022-07-01 18:12:45 -04:00
installer Windows installer EXE Update 2022-06-20 04:14:49 +00:00
server EQ2World EXE Update 2022-06-29 07:09:39 +00:00
.gitignore Update .gitignore 2020-04-16 10:08:31 -04:00
CMakeLists.txt Add CMake for root + Login/WorldServer 2020-09-06 13:18:17 -05:00
LICENSE.md Base 2020-02-28 09:17:24 -05:00
README.md Update 'README.md' 2020-06-08 20:41:56 +00:00

EQ2Emulator Project - ALPHA BUILD

Visit https://www.eq2emu.com for more project details, wiki and server installation instructions.

Building/Compiling

Linux Compile Instructions: On our Wiki

Authors

Project team site at EQ2EMu and ZekLabs

License

This project is licensed under the GNU General Public License - see the LICENSE.md file for details