Thread: GUI Problem
View Single Post
  #2  
Old 04-08-2007, 06:00 PM
Rapidwolve Rapidwolve is offline
Registered User
Join Date: Jul 2006
Posts: 1,241
Rapidwolve is an unknown quantity at this point
Oh god, first of all use GS2. Second your showtext and showimg index's should be atleast 200 to prevent other players from seeing it.

PHP Code:
//#CLIENTSIDE
function onCreated() onTimeout();
function 
onPlayerEnters() onTimeout();

function 
onTimeout(){
showtext(2003264"Arial""b"format("Health: %f/%f"clientr.player_hpclientr.player_maxhp));
showtext(2013280"Arial""b"format("Mana: %f/%f"clientr.player_mpclientr.player_maxmp));
showtext(2023296"Arial""b"format("Type: %s"clientr.player_type));
showimg(204"toguilightest.png"1616);
showimg(205player.headimg3232);
showtext(2067248"Arial""bi"player.nick.substring(013) @ this.nick);
showtext(207, (16*17+8), 48"Arial""br"format("Talik: %i"player.rupees));
showtext(208, (16*17+8), 64"Arial""br""Shield: " playershieldpower);
showtext(209, (16*17+8,80), "Arial""br""Weapons: " this.enabweap);
showtext(210, (16*17+8,96), "Arial""br""Lvl. Type: " this.zonetype);
for (
199250i++)
changeimgzoom(i0.6);

for (
199250j++)
  
changeimgvis(i4);

changeimgpart(2050643232);
changeimgcolors(2001001);
changeimgcolors(2010111);
changeimgcolors(2060101);

if (
weaponsenabledthis.enabweap "Enabled";
else 
this.enabweap "Disabled";
if (
level.nopkzonethis.zonetype "No PKing";
else {
if (
level.issparringzonethis.zonetype "Sparring";
else 
this.zonetype "PKing";
}
showstats(1024 256);
setTimer(.05);

Used the for() because I was lazy

Last edited by Rapidwolve; 04-08-2007 at 06:12 PM..
Reply With Quote