SHOW:
|
|
- or go back to the newest paste.
| 1 | function yourfunction() | |
| 2 | outputChatBox("Hi",255,0,0)
| |
| 3 | ||
| 4 | x = 1 | |
| 5 | - | addEventHandler("onPlayerJoin", getRootElement(), yourfunction) |
| 5 | + | function2(x) |
| 6 | end | |
| 7 | addEventHandler("onPlayerJoin", getRootElement(), yourfunction)
| |
| 8 | ||
| 9 | function function2(x) | |
| 10 | outputChatBox(x) | |
| 11 | end |