16
General Off-Topic / (no subject)
« on: June 09, 2005, 03:51:07 PM »
If any of you can help, it would be great. I need to know how to set up a web form so that the contents of the form are sent to me by email.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
sikhil = new(player)
kis!=sikhil->gethmax()
mwin("<kis!>")
wait()
windows()
class player
{
private:
handle$
maxhp!
hp!
maxsp!
sp!
str!
def!
dex!
int!
wis!
agi!
status[]! //status effects affecting players
eq[6]$ //equip slots
public:
method player()
method ~player()
method gethmax() {return this->maxhp!}
method getsmax() {return this->maxsp!}
method gethp() {return hp!}
method sethp(x!)
method sethp(dir$)
method getstat(stat$)
method seapp(se!)
method sedel(se!)
method equip(slot!, item$)
method unequip(slot!, item$)
method levelup()
}
method player::player()
{
str!=16
def!=16
dex!=16
int!=16
wis!=16
agi!=16
maxhp!=46
hp!=46
maxsp!=34
sp!=34
}
method player::~player() {}
method player::player(pstat!)
{
str!=pstat!
def!=pstat!
dex!=pstat!
int!=pstat!
wis!=pstat!
agi!=pstat!
}
method player::gethmax() {return this->maxhp!}
method player::getsmax() {return this->maxsp!}
[snip]