/i 2160, 1000Command /i is working, but when im trying to create a multiple of the same item like gold/arrows/bolts it does not work. E.g. /i 2160 is working, but /i 2160 100 does not. Anyone can help me with that?
Shit, working, so simple thanks. Any chance you know how to add /save command? Was trying to add lua's from older/newer versions of tfs, but no luck on it.
function onSay(player, words, param)
if not player:getGroup():getAccess() then
return true
end
if player:getAccountType() < ACCOUNT_TYPE_GOD then
return false
end
saveServer()
return false
end
function onSay(cid, words, param)
local player = Player(cid)
if not player:getGroup():getAccess() then
return true
end
if player:getAccountType() < ACCOUNT_TYPE_GOD then
return false
end
saveServer()
return false
end