Browser MMO Video#11
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Video#11
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
Wait what?hallsofvallhalla wrote:yeah the owner of file pasta hacked our sites and is a joke.
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Video#11
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 

- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Video#11
exactly...fail
Re: Video#11
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
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
- Justeenoman
- Posts: 16
- Joined: Sun Aug 22, 2010 2:21 pm
Re: Video#11
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
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
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Video#11
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
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']
- Justeenoman
- Posts: 16
- Joined: Sun Aug 22, 2010 2:21 pm
Re: Video#11
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.
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>