Jump to content
MakeWebGames

Recommended Posts

Posted

Hi ! I am from Romania, I'm beginner in PHP & HTML.. and I need some help pls..

Firstly I want this code.. with name color pls

1color.jpg

2color.jpg

And I want plugin vote with auto return credit

Currently these I want..

Thanks anticipated !

Posted

For name colors you could manually change them?

just use

<FONT color=yourcolorhere>Acoupleletters</FONT>

and im pretty sure the real GRPG script with valid liscense comes with a voting script

Posted
For name colors you could manually change them?

just use

Acoupleletters

and im pretty sure the real GRPG script with valid liscense comes with a voting script

nope, the "real" GRPG script comes with bugs + extra bugs...

Voting script is easy, the colour names shouldn't be to hard.

I'll make the voting for you soon :)

Regards Linton

Posted

Here's the HOF that I use - not much, but hope it helps ya.....

 

 
<? 
include 'header.php'; 
?> 
<tr><td class="contenthead">Hall Of Fame</td></tr> 
<tr><td class="contentcontent"><center>[url="halloffame.php?view=exp"]Level[/url] | [url="halloffame.php?view=strength"]Strength[/url] | [url="halloffame.php?view=defense"]Defense[/url] | [url="halloffame.php?view=speed"]Speed[/url] | [url="halloffame.php?view=money"]Money[/url] | [url="halloffame.php?view=points"]Points[/url]</center></td></tr> 
<tr><td class="contentcontent"> 
<table width='100%'> 
<tr> 
<td>Rank</td> 
<td>Mobster</td> 
<td>Level</td> 
<td>Money</td> 
<td>Gang</td> 
<td align='center'>Online</td> 
</tr> 
<? 
$view = ($_GET['view'] != "") ? $_GET['view'] : 'exp'; 
? 
$result = mysql_query("SELECT * FROM `grpgusers` ORDER BY `".$view."` DESC LIMIT 50"); 
$rank = 0; 
while($line = mysql_fetch_array($result, MYSQL_ASSOC)) { 
$rank++; 
$user_hall = new User($line['id']); 
?> 
<tr> 
<td><?= $rank ?></td> 
<td><?= $user_hall->formattedname ?></td> 
<td><?= $user_hall->level ?></td> 
<td>$<?= $user_hall->money ?></td> 
<td><?= $user_hall->formattedgang ?></td> 
<td><?= $user_hall->formattedonline ?></td> 
</tr> 
<? 
} 
?> 
</td></tr> 
<? 
include 'footer.php'; 
?>
Posted

@TTF Hosting No, I didn't specified... I want the name with effects colors :| like there in images

@SlanderDesign Oke, i waiting for a good vote plugin :D and if you can make.. the color name plugin..

@bmwgsa What is this ? :-?? what you give me ?

 

I understand and I know.. "the real GRPG script comes with bugs + extra bugs" but someone can give some script wrought (worked)... with no bugs ? :| I would be grateful.

thx a lot !

Posted

I have yet to see a Modification like games such as Immortalnight.com or Prisonstruggle.com use where players can actually pay for animated/imaged type names that "fits" the layout.

Doing this actually takes a bit of CSS talent, I dont beleive the coding end would be to hard, but fitting everything so you don't have huge gaps between names then small gaps causing everything to be uneven actually becomes a pain, for myself anywho.

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...