If I change account type = 5, I get error on login that char cant be loaded. It seems like 1=player, 2=gm, 3=god, but some commands dont work. Example, I can use /c to use teleport_creature_here.lua talkaction, but /m, /i, /n, /ghost, and more wont work. Any idea why?
EDIT:
Solved by editing out this in the talkaction files
LUA:
function onSay(player, words, param)
if not player:getGroup():getAccess() then
return true
end
-- if player:getAccountType() < ACCOUNT_TYPE_GOD then
-- return false
-- end
i hope this doesnt make players able to cast this stuff, but it seems like they dont, the first if is checking for that already