|
| 09 Nov 2014 09:40 AM |
If I do: print("derp") then in the output appears: "get out troll"
weirdn't isn't it? |
|
|
| Report Abuse |
|
|
|
| 09 Nov 2014 09:40 AM |
not really
you could have made a custom print function
so its not necessarily an error |
|
|
| Report Abuse |
|
|
|
| 09 Nov 2014 09:41 AM |
print("derp") ---> Isn't the output obivous? Hope I made you laugh for a second :3 |
|
|
| Report Abuse |
|
|
128GB
|
  |
| Joined: 17 Apr 2014 |
| Total Posts: 8056 |
|
|
| 09 Nov 2014 09:45 AM |
local oldPrint = print local function print(...) local output = {...} for index, input in pars(prints) do if input == "derp" then output[index] = "TROLLED" end end print(unpack(output)) end |
|
|
| Report Abuse |
|
|
| |
|