View Single Post
10-30-19, 01:26 PM   #3
daylighted
A Murloc Raider
Join Date: Oct 2019
Posts: 3
figured it out

made a solution using concatenation of string

Code:
    str1 = string.sub(msg, 1, 3)
    if str1 == "msg" then
        len = string.len(msg)
        str2 = string.sub(msg,5,string.len(msg))
        print("Current message: ")
        print(str2)
    end
if i type /test1 msg ddddddd

it will save ddddddd
  Reply With Quote