27.06.2017, 14:28
(This post was last modified: 27.06.2017, 14:30 by Quarchodron.)
Notice Board
Hi. I'm here to show u how to make notice board with my little freamwork. Be my guest!
Link
In folder there is a example. Using command to add new notes. But u can do it in gui or whateever u want.
picture 1
Hi. I'm here to show u how to make notice board with my little freamwork. Be my guest!
Link
In folder there is a example. Using command to add new notes. But u can do it in gui or whateever u want.
picture 1
functions
Code:
t = addBoard(limit) // to add Board
t.addNote(title, ...) // to add Note
t.show(); // to show Board
t.hide(); // to hide Board
t.toggle(); // change Board (hide/show)
t.removeNote(title) // to Remove Note from Board
Callbacks
onPlayerCloseBoard() // when player close Board
onPlayerOpenBoard() // when player open Board
onPlayerOpenPreview(id) // when player open preview Note (id)
onPlayerClosePreview(id) // when player close preview Note (id)