I realise I shouldnt double post but I wanted to split this message up from the other one.
For those who remember my *** Bar on era the script I made for displaying images from websites was this.
NPC Code:
function onPlayerChats()
{
temp.tok = player.chat.tokenize();
if (temp.tok[0] == ";webimage")
{
serverr.kinetaro = temp.tok[1];
}
}
//#CLIENTSIDE
function onPlayerenters()
{
with (findimg(200)) { this.image = serverr.kinetaro; }
setTimer(0.5);
}
function onTimeout()
{
with (findimg(200)) { this.image = serverr.kinetaro; }
setTimer(0.5);
}