Beiträge von FOREX
-
-
Dies kann man selbst tun.
Google Captcha einfügen und jut ist.
Freundliche Grüsse,
FOREX -
Da der Club anscheinend keine Halbnackten Frauen auf dem Flyer mag, haben wir das durch die Idee mit Tänzern im Club ersetzt..
-
Auf Auftrag durfte ich noch einen Flyer für den selben Club machen, danke dafür an den Club!
-
phil hats gemacht, muss gut sein
sayonára
Bullshit woher solltest du wissen, wer was auf RetroPresse macht?
Die Technik wird von mir alleine verwaltet und entwickelt.Freundliche Grüsse,
FOREX -
Hatte bei Essentials den selben Problem, ist irgend ein Fehler. Habs zwar hingekriegt, dass die offiziellen Räume verlinkt wurden in der Navi, jedoch wurden dann die Bilder nicht angezeigt.
Müsstest eventuell den Entwickler des CMS fragen, oder eventuell im alten Centerary Thread vorbeischauen, ob das Problem schonmal vorkam.
-
Danke für die vielfältigen Feedbacks, habe hier noch einige neue Sachen zu ergänzen.
-
-
meinst du diesen Code?
PHP
Alles anzeigen<?php /* * ___ _ ___ __ __ ___ * / __|___ _ _| |_ ___ _ _ __ _ _ _ _ _ / __| \/ / __| * | (__/ -_) ' \ _/ -_) ' \/ _` | '_| || | (__| |\/| \__ \ * \___\___|_||_\__\___|_||_\__,_|_| \_, |\___|_| |_|___/ * |__/ * ************************* * Content: CentenaryCMS * Autor : Revue * Contact: me@revue-projects.at */ function getServerCount($string) { global $mysqli; switch ($string) { case 'users': $string = 'users_online'; break; case 'rooms': $string = 'rooms_loaded'; break; case 'stamp': $string = 'stamp'; break; case 'server_started': $string = 'server_started'; break; default: $string = ''; break; } $sql = $mysqli->query("SELECT * FROM server_status"); $row = $sql->fetch_object(); return $row->$string; } function getServerstats($string) { global $mysqli; $sql = $mysqli->query("SELECT * FROM system_stats"); $row = $sql->fetch_object(); return $row->$string; } function pagetitle($title) { global $user; $title = protect($title); $title = str_replace("%username%", $user->username, $title); return $title; } function sendmail($empfaenger, $betreff, $text) { $empfaenger = $empfaenger; $betreff = $betreff; $header = 'MIME-Version: 1.0' . "\r\n"; $header .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $header .= 'From: Habbo Hotel <info@habbo.tl>' . "\r\n"; mail($empfaenger, $betreff, $text, $header); } function MitarbeiterTable($user_id, $string) { global $mysqli; $user_id = protect($user_id); $string = protect($string); $sql = $mysqli->query("SELECT * FROM hp_mitarbeiter WHERE user_id = '" . $user_id . "' "); if ($sql->num_rows > 0) { $row = $sql->fetch_object(); return $row->$string; } else { return '0'; } } function getSettings($string) { global $mysqli; $string = protect($string); $sql = $mysqli->query("SELECT * FROM hp_settings LIMIT 1"); $row = $sql->fetch_object(); return $row->$string; } function umlaute($text, $noprotect = false) { if ($noprotect == false) { $text = protect($text); } $text = str_replace("ä", "ä", $text); $text = str_replace("Ăź", "ü", $text); $text = str_replace("ü", "ü", $text); $text = str_replace("Ăś", "ö", $text); $text = str_replace("?Â", "ß", $text); return $text; } function umlautenew($string) { $string = $string; $string = str_replace("ü", "{ue}", $string); $string = str_replace("Ü", "{UE}", $string); $string = str_replace("ä", "{ae}", $string); $string = str_replace("Ä", "{AE}", $string); $string = str_replace("ö", "{oe}", $string); $string = str_replace("Ö", "{OE}", $string); $string = str_replace("ß", "{ss}", $string); $string = str_replace("&", "{uu}", $string); $string = str_replace("'", "{ho}", $string); $string = str_replace('"', "{hh}", $string); $string = str_replace("¶", "{u1}", $string); $string = str_replace("¢", "{u2}", $string); $string = str_replace("*", "{u3}", $string); $string = str_replace("≠", "{u4}", $string); $string = str_replace("¿", "{u5}", $string); $string = str_replace("‚", "{u6}", $string); $string = str_replace("‘", "[u7}", $string); $string = str_replace("€", "{u8}", $string); $string = str_replace("$", "{u9}", $string); return $string; } function Umlautefix($text, $noprotect = false) { if ($noprotect == false) { $text = protect($text); } $text = htmlentities($text); return $text; } function shitumlaute($string) { $string = str_replace("ä", "ä", $string); $string = str_replace("ü", "ü", $string); return $string; } function protect($string, $output = false) { $string = str_replace("'", "", $string); $string = strip_tags($string); if ($output == false) { $string = Umlautefix($string, 'no-proect'); } return utf8_encode($string); } function pwhash($string) { $string = protect($string); $verschlusselung = 'XX8402u7NF.TL.85929!FASDJ4FU!A\\//adgkl4hsfkasdfhas,l54jk'; $pw = md5(md5(md5($string) . $verschlusselung)); return $pw; } function getRanks($string, $what) { global $mysqli, $user; $sql = $mysqli->query("SELECT * FROM ranks WHERE id = '" . $string . "' "); if ($sql->num_rows > 0) { $row = $sql->fetch_object(); return $row->$what; } } function getSiteManager($id, $string) { global $mysqli; $id = protect($id); $string = protect($string); $sql = $mysqli->query("SELECT * FROM hp_pages WHERE id = '" . $id . "' "); if ($sql->num_rows > 0) { $row = $sql->fetch_object(); return $row->$string; } } function getNaviManager($id, $string) { global $mysqli; $id = protect($id); $string = protect($string); $sql = $mysqli->query("SELECT * FROM hp_navi WHERE id = '" . $id . "' "); if ($sql->num_rows > 0) { $row = $sql->fetch_object(); return $row->$string; } } function getRoom($id, $string) { global $mysqli; $id = protect($id); $string = protect($string); $sql = $mysqli->query("SELECT * FROM rooms WHERE id = '" . $id . "' LIMIT 1"); $row = $sql->fetch_object(); return $row->$string; } function getRoomModel($roomid) { global $mysqli; $id = protect($roomid); $sql = $mysqli->query("SELECT * FROM rooms WHERE id = '" . $id . "' LIMIT 1"); if ($sql->num_rows > 0) { $row = $sql->fetch_object(); $search = $mysqli->query("SELECT * FROM room_models WHERE id = '" . $row->model_name . "' "); if ($search->num_rows > 0) { $srow = $search->fetch_object(); return $srow->heightmap; } else { return 'NO Model Found'; } } else { return 'No Room Found'; exit; } } function Habbohash($textt, $type) { switch ($type) { case('ver'): $text = str_replace("A", "9/", $textt); $text = str_replace("B", "8/", $text); $text = str_replace("C", "7/", $text); $text = str_replace("D", "6/", $text); $text = str_replace("E", "5/", $text); $text = str_replace("F", "4/", $text); $text = str_replace("G", "3/", $text); $text = str_replace("H", "2/", $text); $text = str_replace("I", "1/", $text); $text = str_replace("J", "0/", $text); $text = str_replace("K", "+/", $text); $text = str_replace("L", "*/", $text); $text = str_replace("M", "ďż˝/", $text); $text = str_replace("N", "%/", $text); $text = str_replace("O", "&/", $text); $text = str_replace("P", "~/", $text); $text = str_replace("Q", "(/", $text); $text = str_replace("R", ")/", $text); $text = str_replace("S", ":/", $text); $text = str_replace("T", "_/", $text); $text = str_replace("U", "ďż˝/", $text); $text = str_replace("V", "#/", $text); $text = str_replace("W", "ďż˝/", $text); $text = str_replace("X", "ďż˝/", $text); $text = str_replace("Y", "ďż˝/", $text); $text = str_replace("Z", "|/", $text); $text = str_replace("a", "9>", $text); $text = str_replace("b", "8>", $text); $text = str_replace("c", "7>", $text); $text = str_replace("d", "6>", $text); $text = str_replace("e", "5>", $text); $text = str_replace("f", "4>", $text); $text = str_replace("g", "3>", $text); $text = str_replace("h", "2>", $text); $text = str_replace("i", "1>", $text); $text = str_replace("j", "0>", $text); $text = str_replace("k", "+>", $text); $text = str_replace("l", "*>", $text); $text = str_replace("m", "ďż˝>", $text); $text = str_replace("n", "%>", $text); $text = str_replace("o", "&>", $text); $text = str_replace("p", "~>", $text); $text = str_replace("q", "(>", $text); $text = str_replace("r", ")>", $text); $text = str_replace("s", ":>", $text); $text = str_replace("t", "_>", $text); $text = str_replace("u", "ďż˝>", $text); $text = str_replace("v", "#>", $text); $text = str_replace("w", "ďż˝>", $text); $text = str_replace("x", "ďż˝>", $text); $text = str_replace("y", "ďż˝>", $text); $text = str_replace("z", "|>", $text); $text = str_replace("@", "ďż˝<", $text); $text = str_replace(" ", "ďż˝<", $text); return base64_encode(base64_encode($text)); break; case('ent'): $textt = base64_decode(base64_decode($textt)); $text = str_replace("9/", "A", $textt); $text = str_replace("8/", "B", $text); $text = str_replace("7/", "C", $text); $text = str_replace("6/", "D", $text); $text = str_replace("5/", "E", $text); $text = str_replace("4/", "F", $text); $text = str_replace("3/", "G", $text); $text = str_replace("2/", "H", $text); $text = str_replace("1/", "I", $text); $text = str_replace("0/", "J", $text); $text = str_replace("+/", "K", $text); $text = str_replace("*/", "L", $text); $text = str_replace("ďż˝/", "M", $text); $text = str_replace("%/", "N", $text); $text = str_replace("&/", "O", $text); $text = str_replace("~/", "P", $text); $text = str_replace("(/", "Q", $text); $text = str_replace(")/", "R", $text); $text = str_replace(":/", "S", $text); $text = str_replace("_/", "T", $text); $text = str_replace("ďż˝/", "U", $text); $text = str_replace("#/", "V", $text); $text = str_replace("ďż˝/", "W", $text); $text = str_replace("ďż˝/", "X", $text); $text = str_replace("ďż˝/", "Y", $text); $text = str_replace("|/", "Z", $text); $text = str_replace("9>", "a", $text); $text = str_replace("8>", "b", $text); $text = str_replace("7>", "c", $text); $text = str_replace("6>", "d", $text); $text = str_replace("5>", "e", $text); $text = str_replace("4>", "f", $text); $text = str_replace("3>", "g", $text); $text = str_replace("2>", "h", $text); $text = str_replace("1>", "i", $text); $text = str_replace("0>", "j", $text); $text = str_replace("+>", "k", $text); $text = str_replace("*>", "l", $text); $text = str_replace("ďż˝>", "m", $text); $text = str_replace("%>", "n", $text); $text = str_replace("&>", "o", $text); $text = str_replace("~>", "p", $text); $text = str_replace("(>", "q", $text); $text = str_replace(")>", "r", $text); $text = str_replace(":>", "s", $text); $text = str_replace("_>", "t", $text); $text = str_replace("ďż˝>", "u", $text); $text = str_replace("#>", "v", $text); $text = str_replace("ďż˝>", "w", $text); $text = str_replace("ďż˝>", "x", $text); $text = str_replace("ďż˝>", "y", $text); $text = str_replace("|>", "z", $text); $text = str_replace("ďż˝<", "@", $text); $text = str_replace("ďż˝<", " ", $text); return $text; break; } } function mottosymbole($text) { $text = protect($text); $text = str_replace("|", "♥", $text); $text = str_replace("<3", "♥", $text); return $text; } function getDays($id) { $full_day = $id; if ($full_day == "1") { $date = "Montag"; } if ($full_day == "2") { $date = "Dienstag"; } if ($full_day == "3") { $date = "Mittwoch"; } if ($full_day == "4") { $date = "Donnerstag"; } if ($full_day == "5") { $date = "Freitag"; } if ($full_day == "6") { $date = "Samstag"; } if ($full_day == "0") { $date = "Sonntag"; } return $date; } function getMonth($id) { $full_m = $id; if ($full_m == "1") { $datex = "Januar"; } if ($full_m == "2") { $datex = "Februar"; } if ($full_m == "3") { $datex = "März"; } if ($full_m == "4") { $datex = "April"; } if ($full_m == "5") { $datex = "Mai"; } if ($full_m == "6") { $datex = "Juni"; } if ($full_m == "7") { $datex = "Juli"; } if ($full_m == "8") { $datex = "August"; } if ($full_m == "9") { $datex = "September"; } if ($full_m == "10") { $datex = "Oktober"; } if ($full_m == "11") { $datex = "November"; } if ($full_m == "12") { $datex = "Dezember"; } return $datex; } function dateformatierung($time) { $time = protect($time); switch (date('d.m.Y', $time)) { case date('d.m.Y', strtotime("+1 day")): return 'Morgen </b>um<b> ' . date('H:i', $time); break; case(date('d.m.Y')): return 'Heute </b>um<b> ' . date('H:i', $time); break; case(date('d.m.Y', time() - 86400)): return 'Gestern </b>um<b> ' . date('H:i', $time); break; case(date('d.m.Y', time() - (86400 * 2))): return 'Vorgestern </b>um<b> ' . date('H:i', $time); break; default: return date('d.m.Y', $time) . '</b> um <b>' . date('H:i', $time); break; } } function getTime($time) { $time = protect($time); if ($time / 60 >= '1') { if (($time / 60) / 60 >= '1') { if ((($time / 60) / 60) / 24 >= '1') { if (((($time / 60) / 60) / 24) / 30 >= '1') { if ((((($time / 60) / 60) / 24) / 30) / 12 >= '1') { if ((((($time / 60) / 60) / 24) / 30) / 12 == '1') { $beschreibung = 'Jahr'; } else { $beschreibung = 'Jahren'; } $time = round((((($time / 60) / 60) / 24) / 30) / 12); } else { if ((((($time / 60) / 60) / 24) / 30) == '1') { $beschreibung = 'Monat'; } else { $beschreibung = 'Monaten'; } $time = round(((($time / 60) / 60) / 24) / 30); } } else { if (round((($time / 60) / 60) / 24) == '1') { $beschreibung = 'Tag'; } else { $beschreibung = 'Tagen'; } $time = round((($time / 60) / 60) / 24); } } else { if (round(($time / 60) / 60) == '1') { $beschreibung = 'Stunde'; } else { $beschreibung = 'Stunden'; } $time = round(($time / 60) / 60); } } else { if (round($time / 60) == '1') { $beschreibung = 'Minute'; } else { $beschreibung = 'Minuten'; } $time = round($time / 60); } } else { if (round($time) == '1') { $beschreibung = 'Sekunden'; } else { $beschreibung = 'Sekunden'; } $time = round($time); } return $time . ' ' . $beschreibung; } function copyroom($roomid, $captionnew, $onwernew) { global $mysqli; $roomid = protect($roomid); $captionnew = protect($captionnew); $ownernew = protect($onwernew); $getroom = $mysqli->query("SELECT * FROM rooms WHERE id = '" . $roomid . "' "); if ($getroom->num_rows > 0) { $room = $getroom->fetch_object(); $mysqli->query("INSERT INTO rooms (roomtype, caption, owner, description, category, state, users_now, users_max, model_name, password, allow_hidewall, wallthick, floorthick, wallpaper, floor, landscape) VALUES ('" . $room->roomtype . "', '" . $captionnew . "', '" . $onwernew . "', '" . $room->description . "', '" . $room->category . "', '" . $room->state . "', '0', '" . $room->users_max . "', '" . $room->model_name . "', '" . $room->password . "', '" . $room->allow_hidewall . "', '" . $room->wallthick . "', '" . $room->floorthick . "', '" . $room->wallpaper . "', '" . $room->floor . "', '" . $room->landscape . "') "); $newroom_sql = $mysqli->query("SELECT * FROM rooms WHERE caption = '" . $captionnew . "' AND owner = '" . $onwernew . "' ORDER BY id DESC LIMIT 1"); if ($newroom_sql->num_rows > 0) { $newroom = $newroom_sql->fetch_object(); $sql_get = $mysqli->query("SELECT * FROM items WHERE room_id = '" . $room->id . "'"); if ($sql_get->num_rows > 0) { while ($row = $sql_get->fetch_object()) { $sql = $mysqli->query("SELECT * FROM room_items_moodlight WHERE item_id = '" . $row->id . "' "); if ($sql->num_rows < 1) { $mysqli->query("INSERT INTO items (user_id, room_id, base_item, x, y, z, rot, wall_pos, copied_itemid, ltd_id, ltd_cnt, guild_data) VALUES ('" . $row->user_id . "', '" . $newroom->id . "', '" . $row->base_item . "', '" . $row->x . "', '" . $row->y . "', '" . $row->z . "', '" . $row->rot . "', '" . $row->wall_pos . "', '" . $row->copied_itemid . "', '" . $row->ltd_id . "', '" . $row->ltd_cnt . "', '" . $row->guild_data . "') "); MUS('update_catalogid'); $getitem_sql = $mysqli->query("SELECT * FROM items WHERE room_id = '" . $newroom->id . "' AND base_item = '" . $row->base_item . "' ORDER BY id DESC LIMIT 1"); $getitem = $getitem_sql->fetch_object(); $checkextra = $mysqli->query("SELECT * FROM items_extra_data WHERE item_id = '" . $row->id . "' "); if ($checkextra->num_rows > 0) { $extrada = $checkextra->fetch_object(); $mysqli->query("INSERT INTO items_extra_data (item_id, extra_data) VALUES ('" . $getitem->id . "', '" . $extrada->extra_data . "')"); MUS('update_catalogid'); } } else { } } } MUS('update_catalogid'); MUS('unloadroom', $newroom->id); echo $newroom->id; } else { exit; } } else { exit; } } function isfriend($id1, $id2) { global $mysqli; $id1 = protect($id1); $id2 = protect($id2); $search = $mysqli->query("SELECT * FROM messenger_friendships WHERE user_one_id = '" . $id1 . "' AND user_two_id = '" . $id2 . "' LIMIT 1"); if ($search->num_rows > 0) { return '1'; } else { return '0'; } } function getForumKategorie($id) { global $mysqli; $id = protect($id); $sql = $mysqli->query("SELECT * FROM hp_forum WHERE id = '" . $id . "' "); if ($sql->num_rows > 0) { $row = $sql->fetch_object(); return $row->name; } } function getServerName($ip, $what) { $ip = protect($ip); switch ($ip) { case 'Server1': case '37.59.96.238': $x->name = 'Server <b>2</b>'; $x->ip = '37.59.96.238'; break; case 'Server2': case '46.105.17.53': $x->name = 'Server <b>2</b>'; $x->ip = '92.222.146.46'; break; case 'Server3': case 'c': $x->name = 'Server 3'; $x->ip = '92.222.2.142'; break; case 'Server4': case 'd': $x->name = 'Server 4'; break; case '127.0.0.1': $x->name = 'Server Local'; $x->ip = '127.0.0.1'; break; default: header("location: http://Habbo.tl"); exit; break; } return $x->$what; } function getServerStatus($ip, $port) { $starttime = microtime(true); $file = fsockopen($ip, $port, $errno, $errstr, 10); $stoptime = microtime(true); $status = 1; if (!$file) $status = '0'; // Site is down else { fclose($file); $status = ($stoptime - $starttime) * 1000; $status = '1'; } return $status; } include('./classes/SecurityManager.php'); function fixOutgoingUmlaute($string) { $string = str_replace("{ue}", "ü", $string); $string = str_replace("{UE}", "Ü", $string); $string = str_replace("{ae}", "ä", $string); $string = str_replace("{AE}", "Ä", $string); $string = str_replace("{oe}", "ö", $string); $string = str_replace("{OE}", "Ö", $string); $string = str_replace("{ss}", "ß", $string); $string = str_replace("{uu}", "&", $string); $string = str_replace("{ho}", "'", $string); $string = str_replace("{hh}", '"', $string); $string = str_replace("{u1}", "¶", $string); $string = str_replace("{u2}", "¢", $string); $string = str_replace("{u3}", "*", $string); $string = str_replace("{u4}", "≠", $string); $string = str_replace("{u5}", "¿", $string); $string = str_replace("{u6}", "‚", $string); $string = str_replace("[u7}", "‘", $string); $string = str_replace("{u8}", "€", $string); $string = str_replace("{u9}", "$", $string); return $string; } function GetXlerInfo($userid, $string) { global $mysqli; $userid = protect($userid); $string = protect($string); $check = $mysqli->query("SELECT * FROM hp_xler WHERE user_id = '".$userid."' "); if($check->num_rows > 0) { $row = $check->fetch_object(); return $row->$string; } else { return '0'; } } ?>
Genau, aber nur die Umlaute löschen.
-
Ich hatte das selbe Problem, du musst das im Ordner suchen da sollten mehrere Zeilen auftauchen mit den Umlauten, ich weiss auch nicht was sich der Coded dabei gedacht hat. Lösche dann diese Zeilen und füge wie NoOne sagte den Charset Code in die php Datei ein.
Sollte danach klappen.
-
Nach diesem Putschversuch sind nun 4 Monate vergangen. Nachdem Keldogan den Ausnahmezustand erklärt hat, hatte er endlich die Möglichkeit die Türkei noch ein Stück zu verändern. Die Türkei hat sich noch weiter ein Stück Iran entwickelt.
Es sind 4 Monate vergangen und es wird heute noch fast jeden Tag über den Putchversuch berichtet. Im TV und überall auf den Strassen herrscht nur noch Propaganda über AQ Parti und Kekdogan. Er wird als Held gefeiert, aber jeder vergisst, dass sowas nur passieren konnte weil er in der Macht ist. Seit 1980 war Ruhe und jetzt wo ein islamistischer Parteiist wieder in der Macht ist, entstand ein Putsch, komisch oder?
Freud euch in 20 Jahren auf den neuen Ferienort Türkei.
Aha und deshalb postest du ein Bild darunter, was nichts mit dem Putch zu tun hat.
Du kennst Feto und du weisst was für eine Macht dieser Bastard hatte, die hat er DANK ERDOGAN nicht mehr.
Es war nur Ruhe, weil alle die Wahrheit von Feto verschwiegen hatten. Der alte Präsident der Türkei hatte 0 Sagen in der Türkei wegen Feto.
Erdogan ist ein mutiger Mann und macht momentan vieles richtig in der Türkei in meiner Ansicht. Das einzige was ich an ihm kritisiere ist,
dass er Politik mit Religion verbindet. Würde er in dieser Hinsicht noch seine Klappe halten wäre super.Kommst mir vor wie ein HDP Fanatik Boy dem irgend ein Recht genommen wurde und er deswegen hier rumheult.
Ich kann verstehen, wenn einiges nicht läuft wie es sollte zBsp. das nichts tun gegen ISIS, weil sie die Kurden bekämpfen weil ja in Diyarbakir und
Konya viele Hauptsitze der ISIS sind und sie als Brücke für die Übermittlung an den ISIS gilt. Aber ich denke, dass dies seinen Grund haben wird.Finde einfach dein pushen dieses Beitrags mit solchen Vorwürfen und Bildern nervig, da das Thema langsam durch ist.
Solange Feto nicht an die Türkei ausgeliefert wird, wird man noch Jahre über den Putch berichten. -
Finde einige Werke wirklich toll gemacht, einige widerrum nicht, da muss ich einigen vor mir schon zustimmen.. da ich selbst von pixeln, designen null plan habe, gehe ich rein nach dem optischen und mir gefallen persönlich einige dinge nicht, weil sie recht unschön aussehen.. da hätte man eventuell wirklich etwas mehr draus machen können..
Naja vielleicht ändert sich das ja noch bei weiteren Werken von dir
Danke für die Kritik, jedoch kann ich mich nicht verbessern, wenn du mir keine detaillierte Kritik abgibst..
Jedoch kann ich solch eine Kritik 100x besser nachvollziehen, da sie ernst gemeint ist. -
sorry aber kann nicht nachvollziehen was das mit pixeln zu tun hat
ne schnittmaske erstellen hat echt nichts mit pixeln zu tun, ich weiß wovon ich redewie lange machste das schon? wenn du noch am anfang bist, nett und schön..
aber wenn du schon 1-2 jahre damit beschäftigt bist, solltest du was neues suchenRede nicht über etwas, von dem du keinen Plan hast bitte.
Versuche erst Recht keine Kritik auszuüben, wenn du das Wort Pixel nicht mal verstanden hast.Ich erkläre für dich, weil du nix gut Deutsch und ich netter Mann.
Mit Pixel, Bildpunkt, Bildzelle oder Bildelement (selten Pel) werden die einzelnen Farbwerte einer digitalen Rastergrafik bezeichnet sowie die zur Erfassung oder Darstellung eines Farbwerts nötigen Flächenelemente bei einem Bildsensor beziehungsweise Bildschirm mit Rasteransteuerung.
Eine Stube, Stube sollte man hier nicht Wort wörtlich nehmen, da es eher ein Einblick ist in die Werke
von einem Mitglied auf RetroTown ist. Es heisst nicht, dass ich etwas "gepixelt" habe so wie du das verstanden hast. (zBsp. Badges, Möbelstücke unvm.)Wenn du denkst, dass man als Anfänger solche Sachen auf die Beine stellen kann, dann solltest du das ja auch easy going können oder?
Dein Argument, dass wenn ich das schon seit 1-2 Jahren mache mir etwas neues suchen muss, macht 0 Sinn. Verstehe nicht welche Message du mir übermitteln willst.Verstehe auch nicht woher die ganzen Neulinge kommen, riecht nach Doppelaccounts von Leuten mit verschissenen Hosen.
Freundliche Grüsse,
FOREX -
Sieht nice aus, und Danke für die Signatur
Immer doch!
Danke für dein Feedback.Cheers,
Forex -
-
Halli Hallo,
Danke für die bisherige Rückmeldung, wir waren übers Wochenende aufgrund Server Problemen offline.
Nun sind wir wieder vollständig für euch erreichbar! Wir organisieren auch schon wieder sehr viel für euch und für das tolle
neue Jahr, welches auf uns so langsam aber sicher zukommt. Wie schnell 2016 vergangen ist..Freundliche Grüsse,
FOREX -
Kleine Einblicke in das CMS Update - kann sich noch jemand an dieses Design erinnern?
Wann genau wir das CMS Update einspielen werden, ist in jetziger Sicht noch unklar. Wir hoffen, dass wir in den nächsten 2-3 Wochen bereits mit diesem Design punkten können.
Eines der besten Oldschool Register in meinen Augen von Habbo Hotel.
Wenn man den Begriff Habbo hört, kommt mir genau dieses Bild in den Sinn von diesem Register.
HabboMN hatte damals noch den alten Index der mir auch besonders gut gefallen hat.Freundliche Grüsse,
FOREX -
Rauchen, PS4 zocken mit Kollegen, Saufen, Party, wieder Rauchen, Fussball spielen, meinen Couseng aufn Sack gehen, meinen Eltern helfen, meine Schwestern unterstützen und Shoppen!
Ab und zu auch 5 gegen 1, aber psst.
-
Danke @Madness demnächst lerne ich auch wie man aus Personen Comic Figuren machen kann.
Habe da so einiges vor zu lernen, jedoch halt ist es nicht einfach gerade sehr einfach und Zeitaufwändig.Bei mir ist das Problem, wenn eine Grafik länger als 3-4 Stunden braucht, gefällt mir das Arbeiten daran nicht mehr.
Sollten Grafiken unter uns sein, könntet ihr doch mal sagen wie ihr am liebsten arbeitet und ob ihr auch schon Habbo Off Topic
Grafiken erstellt habt.Freundliche Grüsse,
FOREX -
Die vorherige hat mir mehr gefallen.
Irgendwie ist es leer. (für mich)MfG Entrance
Sind 2 verschiedene Effekte nicht vergessen.
Das 2. dient eher als Cover / Logo &
das mit A$AP war ein Comic, welches die Kleider in einer 3D Form anzeigt und die Font mit einem Glaseffekt reflektiert.Freundliche Grüsse,
FOREX