mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
12 lines
253 B
Lua
Executable file
12 lines
253 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/devpotion.lua
|
|
Script Author : bubbajoe
|
|
Script Date : 2021.12.07 11:12:06
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function examined(Item, Player)
|
|
SetMaxHP(Player, GetMaxHP * 3)
|
|
end
|
|
|