Crystal Load

  • Initiateur de la discussion
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Bonjour
J'ai un problème avec le Crystal Load
Les règles sont écrites en petites alors qu'elles doivent êtres écrites en grandes.
https://prntscr.com/byt6wi
 
Pichot

Pichot

Geek suprême
Messages
281
Score réaction
144
Points
150
Il doit te manquer la police d'écriture, ou un problème de css
 
Mickapette

Mickapette

Psychopathe
Messages
1 126
Score réaction
193
Points
250
Bonsoir

On dirais que le css est partie en couil***
Tu as toucher à un truc?
 
  • Initiateur de la discussion
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Non pourtant j'ai touché a rien
 
  • Initiateur de la discussion
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
L'index.php
Code:
<?php
$SteamAPIKey = "643F0A57C423744393AC35AFB5C8C422";
if (!isset($_GET["steamid"])) { die("Woops, you don't seem to be using the correct loading URL format, please make sure it has the correct extension it should look like this: www.yourdomain.com/loading/index.php?steamid=%s");
}
$steamid64 = $_GET["steamid"];
$url = "http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=" . $SteamAPIKey . "&steamids=" . $steamid64;
$json = file_get_contents($url);
$table2 = json_decode($json, true);
$table = $table2["response"]["players"][0];
?>
<!DOCTYPE HTML>
<html> <head> <!-- Hello, your reading the source code for the server load page --> <!-- Created by CaptainMcMarcus for CoderHire --> <!-- This is the HTML code below and is safe to edit to your needs --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="Welcome to Crystal Load - Crystal Blue Persuassion!" /> <!-- Webpage Description --> <title>Crystal Load</title> <!-- Webpage Title --> <link href="style.css" rel="stylesheet" type="text/css" /> <!-- Links to the Stylesheet --> <link href="colour.css" rel="stylesheet" type="text/css" /> <!-- Links to the Stylesheet for main colours --> <script type="text/javascript" src="scripts/jquery.js"></script><!-- Link to jquery so we can do cool stuff --> <script type="text/javascript" src="scripts/cycle.js"></script><!-- For Rotating Backgrounds --> <script type="text/javascript"><!-- Script to center content --> $(document).ready(function() { $('.audio').prop("volume", 0.5); $(window).resize(function(){ $('.core-wrapper').css({ position:'absolute', left: ($(window).width() - $('.core-wrapper').outerWidth())/2, top: ($(window).height() - $('.core-wrapper').outerHeight())/2 }); }); $(window).resize(); $('#background-scroll').cycle({ fx: 'fade', pause: 0, speed: 1800, //Time to fade into the next image [in milliseconds] timeout: 3500 //Time spent on image [in milliseconds] }); }); </script> </head> <body> <div id="background-scroll"><!-- Add Backgrounds so we can have multiple ones --> <!-- IF YOU NEED LESS BACKGROUNDS JUST REMOVE THEM OUT OF THE LIST --> <!-- TO ADD EXTRA BACKGROUNDS YOU NEED TO MODIFY THE STYLESHEET [ADVANCED USERS ONLY] --> <div id="bg1"></div><!-- BG 1 --> </div> <div class="core-wrapper"><!-- Opens the wrapper so we can contain and center everything --> <img src="images/logo.png" width="960" height="120" alt="Your Logo" /><!-- This adds in the logo, simply change logo.png to make this look different --> <div id="left-items"><!-- Opens the wrapper for the left content, there isn't really much to change on the left side as it's dynamic --> <?php echo "<div id=\"profile-wrap\">"; echo "<div id=\"profile-top\">"; echo "<div id=\"avatarimg\">"; echo "<img src=\"" . $table["avatarfull"] . "\" />"; echo "</div>"; echo "</div>"; echo "<div id=\"profile-bottom\">"; echo "<p>" . $table["personaname"] . "</p>"; echo "</div>"; echo "</div>"; ?> <div class="clear"></div> <div class="title server"> <h2>Server</h2><!-- Adds in the server title, you can change the text to be whatever you would like --> </div> <!-- Lets get the server Details in here --> <ul id="server-list"> <li><img src="images/server-name.png" alt="Server Name" /> <span id="s-name">ARMOR RP</span></li><!-- Dynamically adds the server name --> <li><img src="images/server-mode.png" alt="Game Mode" /> <span id="s-mode">DARKRP</span></li><!-- Dynamically adds game mode name --> <li><img src="images/server-map.png" alt="Map Name" /> <span id="s-map">rp_rockford_v1b</span></li><!-- Dynamically adds map name --> </ul> </div><!-- Close The Wrapper for the Left Items --> <div id="right-items"><!-- Open wrapper for the items on the right --> <div class="title"> <h2>Our Rules</h2><!-- Adds in the rules title, you can change the text to be whatever you would like --> </div> <!-- Let's add in all the rules, the number inside the <span></span> tags will appear in a brighter coloured box --> <ul id="REGLES"> <li><span>1</span> Ne pas Freekill</li> <li><span>2</span> Ne pas FreePunch</li> <li><span>3</span> Ne pas FreeShoot</li> <li><span>4</span> Ne pas PropsKill</li> <li><span>5</span> Ne pas CarKill</li> <li><span>6</span> Ne pas UseBug</li> <li><span>7</span> Pas de MétaGaming</li> <li><span>8</span> Ne pas spam oral ou écrit</li> <li><span>9</span> Réspectez le staff et les joueurs</li> <li><span>10</span> Merci et bon jeux!</li> </ul> </div><!-- This close the right content wrapper --> <div class="clear"></div><!-- This clears things up so that we can vertically align things correctly --> <!-- This adds in the progress bar --> <div id="bar"> <div id="bar-width" style="width: 0%;"></div> </div> <!-- This adds in the progress percentage bar --> <div id="percentage"> <p></p> </div> <!-- This adds the current item being downloaded, we use the word connecting by default because if we don't download anything then it won't change --> <div id="download-item"> <p>Connection en cours...</p> </div> </div><!-- now we close the core wrapper to keep everything nicely contained and in the middle --> <!-- MUSIC SCRIPT --> <!-- To activate simply delete the comment tags and replace music.mp3 with the path to your sound file. --> <!-- Adding copyrighted music is illegal as you will be redistributing from the server this is hosted from, this means that you will be held liable --> <!-- <audio class="audio" autoplay autobuffer="autobuffer"> <source src="music.ogg" type="audio/ogg"> </audio> --> <script type="text/javascript" src="scripts/main.js"></script><!-- Script to get downloads, map, players, game mode and sort out the loading bar --> </body><!-- Closes off the HTML Document -->
</html>
 
Mickapette

Mickapette

Psychopathe
Messages
1 126
Score réaction
193
Points
250
re télécharge l'addon et fais attention en mettant tes règles
 
Mickapette

Mickapette

Psychopathe
Messages
1 126
Score réaction
193
Points
250
heuuu chez pas si ta le drois de mettre le code html
 
Yoh Sambre ♪

Yoh Sambre ♪

Shaman Fou
Messages
16 280
Score réaction
9 687
Points
1 845
Mickapette à dit:
heuuu chez pas si ta le drois de mettre le code html
Normalement non huhu !
 
  • Initiateur de la discussion
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
C'est un pote a moi qui l'a fait désole
Sinon c'est régle
Merci a vous;)
 
Discord d'entraide
Rejoignz-nous sur Discord