1. Screen Shot 2015-01-24 at 12.43.32.png
    So since the update there is this error for all arg:ReplyWith , dunno if it's going to be like the baseplayer:ChatMessage() or not, but at the moment here is a fix for your plugins
    (thx Mughisi for showing me the GetMethod XD)

    Code:
    function PLUGIN:OnServerInitialized()
        command.AddConsoleCommand("test.test", self.Object, "ccmdTest")
        ReplyWith = global.Arg._type:GetMethod("ReplyWith")
    end
    function PLUGIN:SendReply(source,msg)
        param = util.TableToArray( { msg } )
        util.ConvertAndSetOnArray( param, 0, msg, System.String._type )
        return ReplyWith:Invoke( source, param )
    endfunction PLUGIN:ccmdTest(arg)
       self:SendReply(arg,"testing the reply")
    end
     
  2. Wulf

    Wulf Community Admin

    Since which update? It was working just fine last night.
     
  3. last nights update.
     
  4. Wulf

    Wulf Community Admin

    Working fine here with all my plugins. :p