View Single Post
  #3  
Old 03-25-2007, 11:45 PM
Riot Riot is offline
Delteria Management
Join Date: Nov 2003
Location: Seminole County, Florida
Posts: 280
Riot is on a distinguished road
Quote:
Originally Posted by godofwarares View Post
In GS1:

* I love how when people ask for GS1, everyone gives him GS2 ...
You almost had it right:

HTML Code:
if (created)
{
     this.sethearts = 10;
     this.setsword = 2;
}

if (playerenters)
{
     setstring clientr.setsword,#v(playerswordpower);
     setstring clientr.sethearts,#v(playerfullhearts);
     playerswordpower = this.setsword;
     playerfullhearts = this.sethearts;

     setplayerprop #c,Default stats set!;
}

if (playerleaves)
{
     playerswordpower = strtofloat(#s(clientr.setsword));
     playerfullhearts = strtofloat(#s(clientr.sethearts));
     setstring clientr.setsword,;
     setstring clientr.sethearts,;

     setplayerprop #c,Original Stats Restored;
}
Reply With Quote