Re: Changing a mailbox feature
think about it..
the more records in a table the longer queries will take because it will have to search through more data,
Re: Changing a mailbox feature
You only want mails that the user can see in the mail table or it will slow the queries down. It would be best to store any hidden mails in a separate table or database.
Re: New In-Game Template
Some improvements that will aid loading speed..
Set the body background to the gray & black pattern.
The content background image 1px tall saved as a PNG with 70% opacity.
for the top and bottom content bits have seperate containers with rounded edges.
Re: PHP Form issue
$ir is an array that contains all your player statistics. A query selects your record from the users table in the database and creates an array from the values.
So $ir['username'] would be the username in your record in the database.
Re: [v2] Adding exact % energy
$energy = floor($ir[energy] * 10%);
That would work;
10% is a tenth of a whole so to times it by any number would give a tenth of the number.
Re: Changing a mailbox feature
an additional field in the mailbox table. Change all appropriate fields to something like this...
WHERE `state` = '1'
Have the default value to 1 and when the user goes to "delete" their mail it changes the value to 0.
A better idea would be to log the mails in a separate table...
Re: [mccodes V2] Drag n Drop User Menu + Staff Menus [WORKING COPY]
it looks good but you have an issue. Here is a like outy of the main menu..
<li itemID='gym'>Gym
You are using " and ' wrong. Browsers will see the onclick to be speak(
it would be best to use it something like this ...
onclick=" speak('retg') "
Re: v1 or v2
any game engine can have the same layout. The best way to create a good looking template is to start not on the engine and create the layout its self the adapt it to the game...
well it seems to work for me
Re: [V2] View Donators
if your going to do a job do it right... im sure Nyna may have a good enough reason why opening and closing php all the time could be a issue
google it lol Extensible Hypertext Markup Language (XHTML)
i do know what it is but it looks like normal html to me.