Cuberite Forum
is there a way to draw an inventory grid on screen? - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Plugins (https://forum.cuberite.org/forum-1.html)
+--- Forum: Plugin Discussion (https://forum.cuberite.org/forum-8.html)
+--- Thread: is there a way to draw an inventory grid on screen? (/thread-1965.html)



is there a way to draw an inventory grid on screen? - anne - 05-20-2015

i couldnt find anything but im wondering if there's currently a way to draw an inventory grid on the screen. another would be like, lets say i want to make a plugin that counts monster kills somewhere on the screen. what would i need to use to draw the counter on screen?


RE: is there a way to draw an inventory grid on screen? - NiLSPACE - 05-20-2015

I'm uncertain what exactly you want, but I think you either and to open an inventory or show a scoreboard. but sadly the scoreboard is global for all players. We don't have a per-player scoreboard yet Sad


RE: is there a way to draw an inventory grid on screen? - anne - 05-20-2015

(05-20-2015, 05:15 AM)NiLSPACE Wrote: I'm uncertain what exactly you want, but I think you either and to open an inventory or show a scoreboard. but sadly the scoreboard os global for all players. We don't have a per-player scoreboard yet Sad

shame about the scoreboard. Sad thanks though!


RE: is there a way to draw an inventory grid on screen? - rekatluos - 05-23-2015

What if you would make the script check for a specific name set in the config and output the info ?


RE: is there a way to draw an inventory grid on screen? - NiLSPACE - 05-23-2015

I'm not really sure what you mean, sorry.


RE: is there a way to draw an inventory grid on screen? - rekatluos - 05-23-2015

I havent checked any plugins source so far so i'll give a plain example ( a really bad one, its been years since i touched lua ) . What i understood from your post is that you CANNOT post the scoreboard just for your character, instead you see the scoreboard for everyone (correct me if im wrong,i might be xd).

Something like this :

config.ini -> username: rekatluos

In the plugin something like this -> if my.charName ~= username then return end (if players name does not match the config it outputs global, or nothing)
After that you can set every objective to output that specific name's score instead of everyones.

Its just a longshot example, i'll have to read some of the other plugins to get a better idea of what you can/cant do right now xd.