Jump to content

Static-X

Members
  • Posts

    128
  • Joined

  • Last visited

Everything posted by Static-X

  1. Oh, yes that can be a reason too, if you are using freeroam, then have a look in fr_server.lua file.
  2. You are canceling the event after the outputChatBox function, it won't cancel anything, so use cancelEvent before. So it will look like function vipMessage( message, messageType ) if PlayerVIP[source] == 1 then if messageType == 0 then cancelEvent() local r,g,b = getPlayerNametagColor ( source ) outputChatBox ( getPlayerName ( source ) .. ": (VIP) #FFFFFF" .. message, source,r,g,b,true ) outputServerLog( "CHAT: " .. getPlayerName ( source ).. ": " .. message ) return end end end addEventHandler( "onPlayerChat", getRootElement(), vipMessage )
  3. Static-X

    /time

    Afaik, you want to make a time system that saves on a SQL DB, you want to copy "Your friend"? or you want, just, to cancel /time?
×
×
  • Create New...