Thread: bitmaps
View Single Post
  #3  
Old 11-09-2006, 01:58 AM
kinetaro kinetaro is offline
Hiding under your bed.
kinetaro's Avatar
Join Date: Jun 2006
Posts: 30
kinetaro is on a distinguished road
Send a message via AIM to kinetaro Send a message via MSN to kinetaro
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);
}