View Single Post
  #2  
Old 02-07-2006, 11:52 PM
Yen Yen is offline
Banned
Yen's Avatar
Join Date: Oct 2005
Location: Nova Scotia, Canada
Posts: 1,085
Yen is an unknown quantity at this point
Send a message via AIM to Yen Send a message via MSN to Yen
Quote:
Originally Posted by projectigi
NPC Code:

function onCreated(){
showtext(500,screenwidth/2,screenheight/2,,"Arial","","foobar test text");
with(findimg(500)){
layer=5;
alpha=0.5;
zoom=3;
}
}

Or alternatively

NPC Code:
with (findimg(500)) {
font = "Arial";
text = "Lawlerskatez";
x = screenwidth / 2;
y = screenheight / 2;
alpha = .5;
zoom = 3;
layer = 5;
}

Reply With Quote