Page 2 of 5

Re: Video#11

Posted: Fri Oct 16, 2009 6:31 pm
by hallsofvallhalla
yeah the owner of file pasta hacked our sites and is a joke. So we took all of our files off that site. Just watch till 14.

Re: Video#11

Posted: Fri Oct 16, 2009 6:36 pm
by countvoldermort
oh, ok :)

Re: Video#11

Posted: Sat Oct 17, 2009 1:50 pm
by Ravinos
hallsofvallhalla wrote:yeah the owner of file pasta hacked our sites and is a joke.
Wait what?

Re: Video#11

Posted: Sat Oct 17, 2009 3:19 pm
by hallsofvallhalla
hmm don't think you were here for that. The site went through a massive split. I got rid of some problems we were having here. Some people got mad about it and hack a few of my sites. Including this one. They are banned and gone forever..thanks god. We don't talk about it much anymore though. We stay to game development here :)

Re: Video#11

Posted: Sat Oct 17, 2009 11:21 pm
by Ravinos
those sobs!

Re: Video#11

Posted: Sat Oct 17, 2009 11:36 pm
by hallsofvallhalla
exactly...fail

Re: Video#11

Posted: Thu Apr 22, 2010 11:09 pm
by scape1027
what is the source code for statpanel.php?

and the style.css code for all the stat things



when i was putting this all on my thing, it was all in a big clump

Re: Video#11

Posted: Tue Aug 24, 2010 2:13 am
by Justeenoman
I am sorry, but I am going to need the code for this.. All of your links are dead, and I am getting a bunch of errors....

Notice: Undefined index: spoints in C:\wamp\www\tutorial\statpanel.php on line 37

Notice: Undefined index: maxspoints in C:\wamp\www\tutorial\statpanel.php on line 37

Warning: Division by zero in C:\wamp\www\tutorial\statpanel.php on line 37

Re: Video#11

Posted: Tue Aug 24, 2010 2:32 am
by hallsofvallhalla
you should continue the videos to 14. Then use its source.

There were waay too many problems when people were trying to code anything before 14.

you are most likely missing ' ' in the variables

like

Code: Select all

$playerinfo3['spoints']

Re: Video#11

Posted: Tue Aug 24, 2010 10:31 pm
by Justeenoman
Here is my stat panel...
The errors are still happening, and I cant find the video 14 under the forums....

Also, I changed GOLD to CREDITS because I am taking the basic stuff, but making the characters and weapons etc all futuristic.

Code: Select all

<div id="lpanel">
<?php
echo "<u><b> " . $playerinfo3['name'] . "</b></u><br>";



echo "Attack = " . $playerinfo3['attack'] . "<br>";
echo "Defense = " . $playerinfo3['defense'] . "<br>";
echo "Hit Points<br><br>";
echo "Special Points<br><br>";
echo "<b><big><u>Credits</u></big></b><br>";
echo $playerinfo3['credits'];
?>
</div>

<div id= "hpointsback">
<?php
echo "<img src='images/barback.png'>";
?>
</div>

<div id= "hpoints">
<?php
$width = ($playerinfo3['hpoints'] / $playerinfo3['maxhp']) * 100;
echo "<img src='images/hpoints.png' width='$width' height='15' >";
?>
</div>

<div id= "spointsback">
<?php
echo "<img src='images/barback.png'>";
?>
</div>

<div id="spoints">
<?php
$width = ($playerinfo3['spoints'] / $playerinfo3['maxspoints']) * 100;
echo "<img src='images/spoints.png' width='$width' height='15' >";
?>
</div>