Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Loft Site!

Newbie Spellweaver
Joined
Jun 13, 2007
Messages
72
Reaction score
0
  • This is my first edites and release, hope i will help.
Ok Here are some info about it:
1.Based On Scutt WebPage
2.Server Status
3.Accounts Status
4.New BackRound Picture
90% of credits to scoot ;D


..:: ScreenShot ::..

diegoalefru - [Release] Loft Site! - RaGEZONE Forums


..:: Download ::..

 

Attachments

You must be registered for see attachments list
Last edited:
Experienced Elementalist
Joined
May 31, 2008
Messages
265
Reaction score
0
nice work if its yours.. ;)
maybe gonna use it
 
Skilled Illusionist
Joined
Jun 27, 2006
Messages
319
Reaction score
0
Ducking idiot this is my site all you did was change the banner image, Jesus noob fail.

Oh and you changed the background to a grey color? Such hard work. This isn't a release you noob and you will get no credits from this.

Reporting thread
 
Newbie Spellweaver
Joined
Jun 22, 2008
Messages
52
Reaction score
0
How the hell does this offend you? You released your work to the public, diegoalefru edited it, he credited you, and he even listed what exactly he changed. It's not his fault if he's credited for it because some idiot didn't take the time to read his post. There's nothing wrong with his post/thread.
 
Skilled Illusionist
Joined
Jun 27, 2006
Messages
319
Reaction score
0
Theres a difference between based on and, credits to Scott.

He changed a 10kb banner and made a thread about it thats the problem.
 
Newbie Spellweaver
Joined
Jun 22, 2008
Messages
52
Reaction score
0
There's also a difference in asking someone politely to change a bit of what they posted and being a complete butt about something small.
If you're not ok with minor poop like this, then don't bother releasing your stuff.
 
Junior Spellweaver
Joined
Jun 13, 2008
Messages
105
Reaction score
0
@ScottDavey: I don't see anywhere on the release "You may not reproduce this work and release it in any way" or the like whatsoever. So until you start doing that, you may not go witch about person X editing the stuff a little and releasing the edited work.

Even if he is "noob", at least he is not saying the work is all his and is giving you credit for basing his edits off of your released website for the public.
 
Skilled Illusionist
Joined
Jun 27, 2006
Messages
319
Reaction score
0
@ScottDavey: I don't see anywhere on the release "You may not reproduce this work and release it in any way" or the like whatsoever. So until you start doing that, you may not go witch about person X editing the stuff a little and releasing the edited work.

Even if he is "noob", at least he is not saying the work is all his and is giving you credit for basing his edits off of your released website for the public.

Because they can edit it yes, But you idiots havn't relised that im talking about editing a 10kb banner file and releasing it.
 
Newbie Spellweaver
Joined
Jun 22, 2008
Messages
52
Reaction score
0
That's a pretty god damn huge difference from what I see in the pictures, and it looks a lot cleaner than yours.
(I apologize for stretching the page).
diegoalefru - [Release] Loft Site! - RaGEZONE Forums
 
Skilled Illusionist
Joined
Apr 6, 2007
Messages
384
Reaction score
2
I like the new one better. Btw, I like lofts too.
 
Experienced Elementalist
Joined
Jan 16, 2008
Messages
291
Reaction score
0
Ducking idiot this is my site all you did was change the banner image, Jesus noob fail.

Oh and you changed the background to a grey color? Such hard work. This isn't a release you noob and you will get no credits from this.

Reporting thread

Firstly he credited you, so its fine,

Secondly, he changed a hell of a lot so its barely even your work anymore,

And finally if you dont want your work to be copied and modified...........DONT RELEASE IT DIPSHIT
 
Newbie Spellweaver
Joined
Mar 20, 2007
Messages
18
Reaction score
0
I love both templates been looking and only 1 row appears for each section.
E.g

Top Level
Name: test - Level: 135

Top Devil
Name: test2 - Pk Points: 21

Top Moneybags
Name: test3 - Gold: 1000042119

Top Bulker
Name: test4 - CPs: 999999999

how do i make it so more then 1 appears.
E.g

Top Level
Name: test - Level: 135
Name: test2 - Level: 100
Name: test3 - Level: 10

Like that please help me and can post on here ore PM me please.
 
Newbie Spellweaver
Joined
Jun 22, 2008
Messages
52
Reaction score
0
$res = mysql_query("SELECT CharName FROM characters ORDER BY Level DESC LIMIT 1;");
$res2 = mysql_query("SELECT Level FROM characters ORDER BY Money DESC LIMIT 1;");
$val = mysql_fetch_array($res);
$val2 = mysql_fetch_array($res2);
echo "<div style='top: 200; left: 550; position: absolute; z-index: 1; visibility: show;'>Top Level<br> <b>Name:</b> ".$val[0]." - <b>Level:</b> ".$val2[0]."</div>";
The LIMIT clause controls how many values are displayed. Change the number in red to the desired amount.
 
Last edited:
Skilled Illusionist
Joined
Jun 27, 2006
Messages
319
Reaction score
0
Firstly he credited you, so its fine,

Secondly, he changed a hell of a lot so its barely even your work anymore,

And finally if you dont want your work to be copied and modified...........DONT RELEASE IT DIPSHIT

I get the Ducking point but it's not hugely modified he changed a few text sizes, banner image and background image.

You think your god, but here's the thing. YOUR NOT
 
Skilled Illusionist
Joined
Apr 6, 2007
Messages
384
Reaction score
2
I get the Ducking point but it's not hugely modified he changed a few text sizes, banner image and background image.

You think your god, but here's the thing. YOUR NOT

What about his not?
 
Newbie Spellweaver
Joined
Mar 20, 2007
Messages
18
Reaction score
0
The LIMIT clause controls how many values are displayed. Change the number in red to the desired amount.

Thank You for trying but there is no change to the page. If you can send me the file please do or if someone can please help me out.

Thank You.
 
Newbie Spellweaver
Joined
Jun 22, 2008
Messages
52
Reaction score
0
Suppose you change LIMIT 1 to 5, I believe it's adding to the array, so you'd also need to add the extra values in echo"", since it's only displaying the first element in the arrays.
Code:
$res = mysql_query("SELECT CharName FROM characters ORDER BY Level DESC LIMIT 5;");
$res2 = mysql_query("SELECT Level FROM characters ORDER BY Money DESC LIMIT 5;");
$val = mysql_fetch_array($res);
$val2 = mysql_fetch_array($res2);
echo "<div style='top: 200; left: 550; position: absolute; z-index: 1; visibility: show;'>Top Level<br> <b>Name:</b> ".$val[0]." - <b>Level:</b> ".$val2[0]." <b>Name:</b> ".$val[1]." - <b>Level:</b> ".$val2[1]." <b>Name:</b> ".$val[2]." - <b>Level:</b> ".$val2[2]." <b>Name:</b> ".$val[3]." - <b>Level:</b> ".$val2[3]." <b>Name:</b> ".$val[4]." - <b>Level:</b> ".$val2[4]."</div>";
Try that and see if it works.
 
Newbie Spellweaver
Joined
Mar 20, 2007
Messages
18
Reaction score
0
Suppose you change LIMIT 1 to 5, I believe it's adding to the array, so you'd also need to add the extra values in echo"", since it's only displaying the first element in the arrays.
Code:
$res = mysql_query("SELECT CharName FROM characters ORDER BY Level DESC LIMIT 5;");
$res2 = mysql_query("SELECT Level FROM characters ORDER BY Money DESC LIMIT 5;");
$val = mysql_fetch_array($res);
$val2 = mysql_fetch_array($res2);
echo "<div style='top: 200; left: 550; position: absolute; z-index: 1; visibility: show;'>Top Level<br> <b>Name:</b> ".$val[0]." - <b>Level:</b> ".$val2[0]." <b>Name:</b> ".$val[1]." - <b>Level:</b> ".$val2[1]." <b>Name:</b> ".$val[2]." - <b>Level:</b> ".$val2[2]." <b>Name:</b> ".$val[3]." - <b>Level:</b> ".$val2[3]." <b>Name:</b> ".$val[4]." - <b>Level:</b> ".$val2[4]."</div>";
Try that and see if it works.



It doesnt work
 
Back
Top