
02-07-2006, 11:52 PM
|
|
Banned
|
 |
Join Date: Oct 2005
Location: Nova Scotia, Canada
Posts: 1,085
|
|
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;
}
|
|
|
|