"Tabbed" script:
1
2
3
4
5
6
2
3
4
5
6
addhook('say', 'ss') function ss(id, text) if text == "Hello" then msg("hello") end end
"Untabbed" script:
1
2
3
4
5
6
2
3
4
5
6
addhook('say', 'ss') function ss(id, text) if text == "Hello" then msg("hello") end end
Now I want to learn will you use any program while you are making lua? If you are, then is program puts tabs automatically? or You are put with your hand ? And please tell me How I can convert any lua to tabbed.
Thanks.