1. I've checked notifer and player list and it uses

    player.SendConsoleCommand .... its not working for me i tried

    player.RunServerCommand(echo, "My name is")
    but its wrong (i knew it btw :p)
     
    Last edited by a moderator: May 25, 2015
  2. You mean send a message to a players ingame console?
    arg:ReplyWith()
     
  3. No i want it to say to me like Notifier does it with /who or /online
     
  4. Lets say you were able to make a plugin sending things to "you", where do you read it?
     
  5. F1 console .....

    i'm gonna explain you...
    if i Use

    print("blalbalblal") = this will send to rcon right ??
    so i want this but for normal players its the command "echo" u got it ? the thing is that i have to send a console message to myself something like that... take a look at Notifier and player list function
     
  6. hatemail got it
     
  7. player.SendConsoleCommand("echo test") works just fine.
     
  8. Probably i'm doing something wrong ....

    the command that u gave me

    player.SendConsoleCommand("echo test")

    File: p-test.lua Line: 52 instance method 'SendConsoleCommand' requires a non null target object:
     
  9. It is lua you need to do player:SendConsoleCommand('')......
     
  10. OH BOY forgot about it ... ffs

    Thanks so much!