--]]
function SokakIC(thePlayer, cmd, ...)
   if not exports.integration:isPlayerTrialAdmin( thePlayer) then
      outputChatBox("[!] Yeterli yetkiniz yok." , thePlayer, 255, 0, 0, true)   
      return
   end
   if not (...) then
      outputChatBox("SÖZDİZİMİ: /" .. cmd .. " [Mesaj]", thePlayer)
      return
   end
   local mesaj = table.concat({ ... }, " ")
   outputChatBox("(( [Sokaktan Sesler]: " .. mesaj .. " ))" , getRootElement(), 150, 150, 150, true)
end
addCommandHandler("ss", SokakIC)
function CevreIC(thePlayer, cmd, ...)
   if not exports.integration:isPlayerTrialAdmin( thePlayer) then
      return
   end
   if not (...) then
      outputChatBox("SÖZDİZİMİ: /" .. cmd .. " [Mesaj]", thePlayer)
      return
   end
   local mesaj = table.concat({ ... }, " ")
   outputChatBox("(( [Çevre]: " .. mesaj .. " ))" , getRootElement(), 150, 150, 150, true)
end
addCommandHandler("cevre", CevreIC)