Jump to content

Orlando

Members
  • Posts

    23
  • Joined

  • Last visited

Orlando's Achievements

Explorer

Explorer (4/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

-1

Reputation

  1. Salut, am o intrebare. Cu ce program se pot construii/edita template-urile de mai jos? (Niciuna dintre ele nu este reclama, este doar un exemplu) 1. http://bbgaming.ro/ 2. http://themeforest.net/item/ritmo-mobile-app-landing-page-html5-template/full_screen_preview/8257395 3. http://bugged.ro/ 4. http://www.kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/ Multumesc pentru atentie!
  2. Salut, deci am un laptoop HP Pavilion G6, cand l-am cumparat nu imi mai trebuia DVD cand l-am aprins am urmat pasii de instalare! De mult timp am vazut ca am o partitie de 18.64GB cu "Recovery" am citit despre acest Recovery si am inteles ca iti face windows-u ca in prima zi.. Cum pot face si eu asa? Vreau ca Windows-u sa fie ca in prima zi.
  3. stiu asta, nu sunt prost! Nu conteaza daca am pus-o, pentru ca folosesc baza de date pe xampp
  4. Am facut cum a zis acel baiat acolo! Dar cand intru sa imi scriu numele sa primesc datele, imi apare acest scris: http://s28.postimg.org/uuq9ylnod/Untitled.png <? /* ***Made by: Nodroz*** *** Enjoy your signatures! *** */ $username="root"; //Your MySQL Username. $password="erkolse"; // Your MySQL Pass. $database="rpgsamp"; // Your MySQL database. $host="localhost"; // Your MySQL host. This is "localhost" or the IP specified by your hosting company. $player_name=$_GET['player_name']; // This gets the player his name from the previous page. /* Next, we will make a connection to the mysql. If it can't connect, it'll print on the screen: Unable to select database. Be sure the databasename exists and online is. */ mysql_connect($host,$username,$password); // Connection to the database. @mysql_select_db($database) or die( "Unable to select database. Be sure the databasename exists and online is."); //Selection of the database. If it can't read the database, it'll give an error. /* To protect MySQL injection. */ $player_name = stripslashes($player_name); $player_name = mysql_real_escape_string($player_name); $query="SELECT * FROM players WHERE Name='$player_name'"; // Gets all the information about the player. $result=mysql_query($query); $i=mysql_num_rows($result); // Here we are counting how many rows this result gives us. /* We will now put the player's information into variables so we can use them more easily. */ /* DON'T FORGET: The names should be exact the same as in your mysql db.*/ if ($i == 1) // If the user has been correct, then it'll give us 1 row. If its 1 row, then it'll proceed with the code. { $Playername=mysql_result($result,0,"Playername"); // Gets the username of the player and put it in the variable $Playername. $Money=mysql_result($result,0,"Money"); // Gets the money of the player and put it in the variable $Money. $Score=mysql_result($result,0,"Score"); // Gets the score of the player and put it in the variable $Score. // Creating of the .png image. header('Content-Type: image/png;'); $im = @imagecreatefrompng('mypicture.png') or die("Cannot select the correct image. Please contact the webmaster."); // Don't forget to put your picture there. $text_color = imagecolorallocate($im, 197,197,199); // RED, GREEN, BLUE --> Go to www.colorpicker.com, select a nice color. Copy the R/G/B letters provided by colorpicker and put them here. $text_username = "$Playername"; // This gets the information about player name to be showed in the picture. $text_score = "$Score"; // Same as above ^^ $text_money = "$Money"; // Same as above ^^ $font = 'comic.ttf'; //Upload your custum font to the directory where this file is placed. Then change the name here. /* USAGE OF THE imagettftext: First ($im) shouldn't be changed. (16) is the text-size. (0) is the angle of your text. Change it, and you'll see what's going on. (20) is de X-coordinate of the text. (36) is the Y-coordinate of the text. */ imagettftext($im, 16, 0, 20, 36, $text_color, $font, $text_username); // Prints the username in the picture. imagettftext($im, 16, 0, 72, 69, $text_color, $font, $text_score); // Prints the score in the picture. imagettftext($im, 16, 0, 72, 99, $text_color, $font, $text_money); // Prints the money in the picture. imagepng($im); imagedestroy($im); } else echo('Username is not in our database. Please try again.'); // If the username doesn't exist (so the row is 0) then it'll give en error. mysql_close(); ?>
  5. Ceva gen: http://rpg2.b-zone.ro/players/bar/Anas_199.png
  6. Salut, am o intrebare. Cum pot fi facute banere care sa arate statisticiille dintr-un joc unui anumit cont? (Joc-ul este samp, GM MYSQL) Exemplu (nu este reclama):
  7. Salut, am un forum IPB cum ii pot vedea parola de la cont?
  8. Salut, in urma cu ceva timp (prin 2013) era o comunitate dar s-a inchis... Nu exista o cale in care pot intra pe arhiva site-ului respectiv si sa vad post-uril/topic-urle de acolo? Stiu ca cautam intr-o zi pe google si imi aparea site-u si jos informatiile ex (post-urile, ce se scria pe acolo)
  9. Courge si imi poti zice si mie cum ai intrat acolo sa vezi pmurile?
  10. trimise de altcineva
  11. Cum pot vedea toate pm-urile trimise unui anumit membru al unui forum IPB?
  12. Cum pot face si eu asa la grade? Ma refer la acele icon-uri mici din dreptul lor:
  13. multumesc foarte mult.. rezolvat. Inca o intrebare.. butoanele acelea cum le pot adauga? Vreau sa mai adaug, de exemplu BLOG, Panel SA:MP..etc
  14. Cum mut acele butoane marcate cu rosu mai in stanga? Sunt prea pe mijloc si nu stiu cum sa le mut
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.