How to allow it?
Depends on the scripts ur using and or your pto version.. more info plz.
-- Script to allow unregistered users to change hub topic
-- Copyright (C) 2013 Petr Kozelka, PPK at PtokaX dot org
-- Licensed under CC BY-SA 3.0 http://creativecommons.org/licenses/by-sa/3.0/
function ChatArrival(curUser, sData)
if curUser.iProfile == -1 then
sCmdPrefix = sData:sub(curUser.sNick:len()+4, curUser.sNick:len()+4)
if string.find(SetMan.GetString(29), sCmdPrefix, 1, true) then
sCmd = sData:sub(curUser.sNick:len()+5, curUser.sNick:len()+10)
if sCmd == "topic " then
sTopic = sData:sub(curUser.sNick:len()+11, sData:len()-1)
if sTopic == "off" then
SetMan.SetString(10, "")
else
SetMan.SetString(10, sTopic)
end
return true
end
end
end
end