Browser MMO Video#11

Location of the Videos
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Video#11

Post 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.
countvoldermort
Posts: 165
Joined: Tue Oct 13, 2009 4:22 pm

Re: Video#11

Post by countvoldermort »

oh, ok :)
Im dumb;)
User avatar
Ravinos
Posts: 281
Joined: Tue Sep 15, 2009 4:14 pm

Re: Video#11

Post by Ravinos »

hallsofvallhalla wrote:yeah the owner of file pasta hacked our sites and is a joke.
Wait what?
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Video#11

Post 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 :)
User avatar
Ravinos
Posts: 281
Joined: Tue Sep 15, 2009 4:14 pm

Re: Video#11

Post by Ravinos »

those sobs!
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Video#11

Post by hallsofvallhalla »

exactly...fail
scape1027
Posts: 18
Joined: Sun Apr 18, 2010 2:33 pm

Re: Video#11

Post 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
User avatar
Justeenoman
Posts: 16
Joined: Sun Aug 22, 2010 2:21 pm

Re: Video#11

Post 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
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Video#11

Post 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']
User avatar
Justeenoman
Posts: 16
Joined: Sun Aug 22, 2010 2:21 pm

Re: Video#11

Post 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>
Post Reply

Return to “Older Browser MMO Videos”