ID:135739
 
I am requesting a plot pixel function.
It would plot a pixel in whatever color you want at the x and y location on the screen(Actual x and y, that means x=2 would be at 2, not 33).

Im sure it would spawn alot of interesting and usefull demos/libs/games on byond from people who also program in C, C++, VB, etc. but might not know/want to do their own network programming

Just a suggestion
Well through icon addition and screen objects you could just do this yourself. The problem is it would be very slow and generate a lot of network overhead(everytime you change an icon it has to be resent to everyone viewing it). Which make it as useful as the windows GDI function SetPixel() :). If you need special dynamicaly drawn stuff it's best to handle every case on game initialization and store it in a list. If that requires too much memory or time to make then it's not something that can be reasonably done with BYOND.