Beiträge von NoHand
-
-
CSS Dateien überprüft?
An die CSS liegt es nicht.
-
Hallo Rt, wenn ich auf den Supportpage drücke, bleibt die Page einfach weß.
Woran liegt dass?
Phpcodes:
Spoiler anzeigen
<?php
if($user_rank > 3){
if($hkzone !== true){ header("Location: index.php?throwBack=true"); exit; }
if(!isset($_SESSION['acp'])){ header("Location: index?p=login"); exit; }
$pagename = "Support - Übersicht";
$pageid = "support";
$posts = mysql_evaluate("SELECT COUNT(*) FROM cms_support");
$pages = ceil(($posts + 0) / 50);
if(isset($page)){
if($page > $pages $page < 1){
$page = 1;
}
} else {
$page = 1;
}
if(isset($_POST['site'])){
header("location: ".$adminpath."/index/p/support&page=".FilterText($_POST['page'])."");
}
if(isset($do)){
if($do == "delete" && is_numeric($key)){
$check = mysql_query("SELECT id FROM cms_support WHERE id = '".$key."' LIMIT 1") or die(mysql_error());
if(mysql_num_rows($check) > 0){
mysql_query("DELETE FROM cms_support WHERE id = '".$key."' LIMIT 1") or die(mysql_error());
mysql_query("INSERT INTO stafflogs (action,message,note,userid,targetid,timestamp) VALUES ('Housekeeping','Ticket gelöscht','support.php','".$my_id."','','".$date_full."')") or die(mysql_error());
$msg = "<div class='rounded rounded-green'><center>Ticket wurde erfolgreich gelöscht. <img src=\"./images/check.gif\"></center></div>";
} else {
$msg = "<div class='rounded rounded-red'><center>Fehler - Ticket konnten nicht gelöscht werden. <img src=\"./images/del.gif\"></center></div>";
}
$editor_mode = false;
} elseif($do == "edit" && is_numeric($key)){
$check = mysql_query("SELECT * FROM cms_support WHERE id = '".$key."' LIMIT 1") or die(mysql_error());
if(mysql_num_rows($check) > 0){
$support = mysql_fetch_assoc($check);
if($support['pickup'] == "0"){
mysql_query("UPDATE cms_support SET id_picker = '".$my_id."', pickup = '1' WHERE id = '".$key."'");
header("location: #");
}
$editor_mode = true;
} else {
$msg = "<div class='rounded rounded-red'><center>Fehler - Ticket konnten nicht gefunden werden. <img src=\"./images/del.gif\"></center></div>";
}
} elseif($do == "save" && is_numeric($key) && isset($_POST['alert'])){
$check = mysql_query("SELECT id,id_user FROM cms_support WHERE id = '".$key."' LIMIT 1") or die(mysql_error());
if(mysql_num_rows($check) > 0){
$support = mysql_fetch_assoc($check);
mysql_query("INSERT INTO cms_alerts (userid,alert) VALUES ('".$support['id_user']."','Antwort auf dein Support-Ticket ~ <b>".$key."</b>:<br><br>".$_POST['alert']."')") or die(mysql_error());
mysql_query("UPDATE cms_support SET pickup = '2' WHERE id = '".$key."' LIMIT 1") or die(mysql_error());
mysql_query("INSERT INTO stafflogs (action,message,note,userid,targetid,timestamp) VALUES ('Housekeeping','Ticket Bearbeitet','support.php','".$my_id."','".$support['id_user']."','".$date_full."')") or die(mysql_error());
$msg = "<div class='rounded rounded-green'><center>Ticket wurde erfolgreich bearbeitet. <img src=\"./images/check.gif\"></center></div>";
$editor_mode = false;
} else {
$msg = "<div class='rounded rounded-red'><center>Fehler - Das Ticket existiert nichtmehr! <img src=\"./images/check.gif\"></center></div>";
}
}
} else {
$editor_mode = false;
}
@include('subheader.php');
if(isset($msg)){ ?><p><strong><?php echo $msg; ?></strong></p><?php } ?>
<?php //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ?>
<?php if(isset($editor_mode) && $editor_mode !== true){ ?>
<?php //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ?>
<form action='<?php echo $adminpath; ?>/index/p/support&do=save' method='post' name='theAdminForm' id='theAdminForm'>
<div class='tableborder'>
<div class='tableheaderalt'><center><?php echo mysql_evaluate("SELECT COUNT(*) FROM cms_support"); ?> Hilferufe // Davon <?php echo mysql_evaluate("SELECT COUNT(*) FROM cms_support WHERE pickup != '2'"); ?> Unbearbeitet //
<select name="page">
<?php for ($i = 1; $i <= $pages; $i++){ ?>
<option value="<?php echo $i; ?>"<?php if($i == $page){ echo' selected="selected"'; } ?>><?php echo $i; ?></option>
<?php } ?>
</select>
<input type="submit" name="site" value="Weiter »">
</div>
<table cellpadding='4' cellspacing='0' width='100%'>
<tr>
<td class='tablesubheader' width='1%' align='center'>ID</td>
<td class='tablesubheader' width='20%'>Status</td>
<td class='tablesubheader' width='10%'><?php echo $sitename; ?></td>
<td class='tablesubheader' width='40%'>Kategorie</td>
<td class='tablesubheader' width='15%'>Datum</td>
<td class='tablesubheader' width='1%'>Bearbeitung</td>
</tr>
<?php
$query_min = ($page * 50) - 50;
if($query_min < 0){
$query_min = 0;
}
$get_tickets = mysql_query("SELECT * FROM cms_support ORDER BY id DESC LIMIT ".$query_min.", 50") or die(mysql_error());
while($row = mysql_fetch_assoc($get_tickets)){
$user = mysql_fetch_assoc($user = mysql_query("SELECT username FROM users WHERE id = '".$row['id_user']."'"));
if($row['pickup'] == "0"){
$status = "<font color='red'>Unbearbeitet!</font>";
} elseif($row['pickup'] == "1"){
$picker = mysql_fetch_assoc($get_picker = mysql_query("SELECT username FROM users WHERE id = '".$row['id_picker']."'"));
$status = "<font color='orange'>Bearbeitung von <b>".$picker['username']."</b>!</font>";
} else {
$status = "<font color='green'>Bearbeitet!</font>";
}
?>
<tr>
<td class='tablerow1' align='center'><?php echo $row['id']; ?></td>
<td class='tablerow2'><?php echo $status; ?></td>
<td class='tablerow1' align='center'><?php echo $user['username']; ?></td>
<td class='tablerow2'><?php echo $row['category']; ?></td>
<td class='tablerow2'><?php echo date('d.m.Y - H:i:s', $row['timestamp']); ?> Uhr</td>
<td class='tablerow2' align='center'><a href='<?php echo $adminpath; ?>/index/p/support&do=edit&key=<?php echo $row['id']; ?>'><img src='./images/<?php if($row['pickup'] == "0"){ echo"check"; } else { echo"edit"; } ?>.gif'></a> <a href='<?php echo $adminpath; ?>/index/p/support&do=delete&key=<?php echo $row['id']; ?>'><img src='./images/del.gif' alt='Delete'></a></td>
</tr>
<?php } ?>
</table>
<?php //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ?>
<?php } elseif(isset($do) && $do == "edit" && is_numeric($key)) { ?>
<?php //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ?>
<form action='<?php echo $adminpath; ?>/index/p/support&do=save&key=<?php echo $key; ?>' method='post' name='theAdminForm' id='theAdminForm'>
<div class='tableborder'>
<div class='tableheaderalt'><center>Ticket ID: <?php echo $key; ?>!</center> <div style="float: right; margin-top: -22px; margin-right: 5px;"><input onclick="javascript:history.go(-1);" value='Zurück' class='cancelbutton' accesskey='s'> <input type='submit' name='submit' value='Ticket Speichern' class='savebutton' accesskey='s'></div></div>
<table width='100%' cellspacing='0' cellpadding='5' align='center' border='0'>
<tr>
<td class='tablerow1' width='40%' valign='middle'><b>User</b><div class='graytext'>Von wem das Ticket erstellt worden ist</div></td>
<td class='tablerow2' width='60%' valign='middle'><input type='text' name='id_user' disabled='disabled' value="<?php $user = mysql_fetch_assoc($user = mysql_query("SELECT username FROM users WHERE id = '".$support['id_user']."'")); echo $user['username']; ?>" size='30' class='textinput'></td>
</tr>
<tr>
<td class='tablerow1' width='40%' valign='middle'><b>Supporter/in</b><div class='graytext'>Staff, der das Ticket bearbeitet (hat)</div></td>
<td class='tablerow2' width='60%' valign='middle'><input type='text' name='id_picker' disabled='disabled' value="<?php $user = mysql_fetch_assoc($user = mysql_query("SELECT username FROM users WHERE id = '".$support['id_picker']."'")); echo $user['username']; ?>" size='30' class='textinput'></td>
</tr>
<tr>
<td class='tablerow1' width='40%' valign='middle'><b>Kategorie</b><div class='graytext'>Art des Tickets</div></td>
<td class='tablerow2' width='60%' valign='middle'><input type='text' name='category' value="<?php echo $support['category']; ?>" size='30' class='textinput'></td>
</tr>
<tr>
<td class='tablerow1' width='40%' valign='middle'><b>Beschreibung</b><div class='graytext'>Problem/Idee des Users</div></td>
<td class='tablerow2' width='60%' valign='middle'><textarea id="content" name="comment" style="width:80%"><?php echo $support['comment']; ?></textarea>
</td>
</tr>
<tr>
<td class='tablerow1' width='40%' valign='middle'></td>
<td class='tablerow2' width='60%' valign='middle'></td>
</tr>
<tr>
<td class='tablerow1' width='40%' valign='middle'><b>Antwort</b><div class='graytext'>Antwort auf das Ticket (ID-<b><?php echo $key; ?></b>)<br /><font color="green">HTML is erlaubt.</font></div></td>
<td class='tablerow2' width='60%' valign='middle'><textarea id="content" name="alert" style="width:80%"></textarea>
<?php //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ?>
<?php } ?>
<?php //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ?>
</div>
</table></div>
<?php require_once('footer.php'); } else { require_once('error.php'); exit; } ?>
-
#CLOSED Musti hat mir schon geholfen, trz danke an euch allen.
-
-
Müsste eig sein. Hab das aus eine ReCMS. xD
-
Hallo RT,
Ich möchte in meine staffpage einstellen wenn der staff on ist das der opacity: auf 1 geht.
Ich habs so gemacht. opacity:<?php if($userdata[1] == "0"){ echo"0.7"; } else { echo"1"; } ?> aber irgendwie funktioniert es ned. Das hab ich von eine alte recms genommen.
Wäre nett wenn ihr mir helfen würdet.
lg Silvio
-
welches cms benutzt du ?
recms.
#EDIT
Pixel, ich habs getan. Finde nix.
Könntest du vlt schauen ob was falsch ist an dem code?
#EDIT
Ich hab jetzt position:fixed; gemacht. Seitdem kann ich aber nix mehr im Menü klicken. Aber das positive ist die Box bewegt sich nicht mehr mit.
Wie kann ich das mit dem menü beheben?
-
Guten Abend Rt, ich hab an eine News bisschen rumgebastelt(Bearbeitet).
Alles läuft perfekt.
Bild:
Spoiler anzeigen
Aber wo ich neue News eingefügt hab um zu testen das alles perfekt läuft, passiert das:
Bild:
Spoiler anzeigen
Htmlcode:
Spoiler anzeigen
<html lang="de">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title><?php echo $sitename; ?> :: News</title>
<div style="clear:both;"></div>
</div>
</div>
</div>
</br></br>
<style>
.boxdd {
z-index: -1;
float: left;
border-radius: 2px;
background-color: #FFFFFF;
box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.1);
}
.boxdescc {
width: 161px;
height: 18px;
line-height: 22px;
border-bottom: 1px dashed rgba(0,0,0,0.10);
padding: 20px;
font-size: 14px;
font-weight: 500;
margin-bottom: 10px;
color: #444444;
float: left;
font-family: 'Segoe UI',sans-serif;
}
</style>
<div style="margin-left: 50px;" class="grid_2">
<?php
$sql = mysql_query("SELECT * FROM cms_news ORDER BY id DESC");
if(mysql_num_rows($sql) > 0){
?>
<div class="boxdd" style="margin-top: -50px;width: 100%;">
<div class="boxdescc" style="color: #fff;background: #474747; font-size: 18px;">Menü</div>
<ul style="list-style-type: none;padding:0px;font-size: 13px;">
<?php while($row = mysql_fetch_assoc($sql)){ ?>
<?php if($news_id !== $row['id']){ echo"<a href=\"".$path."/articles/".$row['id']."\">"; } ?>
<li class="lastnews" style="color: #41c717; text-align: center;"><?php echo $row['title']; ?></a> »
<?php if($news_id !== $row['id']){ echo"</a>"; } ?></li>
<?php } ?>
</b>
</ul>
<?php } ?>
</div>
</div>
<div class="container_12 animated fadeInLeft">
<div class="grid_12">
<div class="boxd" style="margin-top: -120px;margin-left: 60px;width: 100%;">
<div class="boxhead">
<div style="float: left;"><?php echo HoloText($news['title']); ?></div>
<div style="float: right;"><?php echo date('d.m.Y', $news['published']); ?></div>
</div>
<div class="boxdesc"><?php echo nl2br(HoloText($news['longstory'])); ?></div>
<span style="line-height: 22px; margin-bottom: 15px;">
<p><?php echo nl2br(HoloText($news['shortstory'], true)); ?></p>
</span>
<div class="boxautor">
<div style="float: left; opacity: 0.8;">
Artikel verfasst von <font color="#3498db"><?php echo $news['author']; ?></font>
</div>
</div>
</div>
</div>
Es wäre cool, wenn ihr mir helfen würdet.
-
Leer mal die User_info Tabelle.
Geht trz nicht.
In die exceptions.err datei steht das:
24.08.2017 15:23:49: System.InvalidCastException: Das Objekt des Typs "System.DBNull" kann nicht in Typ "System.String" umgewandelt werden.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(DataRow habboData, String ssoTicket, GameClient session, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 34.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(String ssoTicket, GameClient Session, UserDataFactory userData, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 12.
bei GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:Zeile 156.
-
Hab alles versucht es funktioniert immernoch nicht...
-
Warte, ich versuche es mal selber kurz zu fixxen hab eine Idee.
-
Ich werde es gleich testen.
#EDIT
SirSonay ja okey.
Spoiler anzeigen
28-Sep-14 5:06:11 PM: Error: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at GoldTree.HabboHotel.Roles.RoleManager.method_2(UInt32 uint_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Roles\RoleManager.cs:line 1177
at GoldTree.HabboHotel.Users.Habbo.method_4() in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:line 600
at GoldTree.HabboHotel.Rooms.RoomUser.HandleSpeech(GameClient Session, String str, Boolean bool_13) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Rooms\RoomUser.cs:line 197
at GoldTree.Communication.Messages.Rooms.Chat.ChatMessageEvent.Handle(GameClient Session, ClientMessage Event) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\Communication\Messages\Rooms\Chat\ChatMessageEvent.cs:line 20
at GoldTree.HabboHotel.GameClients.GameClient.ParsePacket(Byte[]& bytes) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:line 577
28-Sep-14 5:07:16 PM: Error: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at GoldTree.HabboHotel.Roles.RoleManager.method_2(UInt32 uint_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Roles\RoleManager.cs:line 1177
at GoldTree.HabboHotel.Users.Habbo.method_4() in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:line 600
at GoldTree.HabboHotel.Rooms.RoomUser.HandleSpeech(GameClient Session, String str, Boolean bool_13) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Rooms\RoomUser.cs:line 197
at GoldTree.Communication.Messages.Rooms.Chat.ChatMessageEvent.Handle(GameClient Session, ClientMessage Event) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\Communication\Messages\Rooms\Chat\ChatMessageEvent.cs:line 20
at GoldTree.HabboHotel.GameClients.GameClient.ParsePacket(Byte[]& bytes) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:line 577
28-Sep-14 5:10:39 PM: Error: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at GoldTree.HabboHotel.Roles.RoleManager.method_2(UInt32 uint_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Roles\RoleManager.cs:line 1177
at GoldTree.HabboHotel.Users.Habbo.method_4() in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:line 600
at GoldTree.HabboHotel.Rooms.RoomUser.HandleSpeech(GameClient Session, String str, Boolean bool_13) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Rooms\RoomUser.cs:line 197
at GoldTree.Communication.Messages.Rooms.Chat.ChatMessageEvent.Handle(GameClient Session, ClientMessage Event) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\Communication\Messages\Rooms\Chat\ChatMessageEvent.cs:line 20
at GoldTree.HabboHotel.GameClients.GameClient.ParsePacket(Byte[]& bytes) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:line 577
28-Sep-14 5:11:04 PM: Error: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at GoldTree.HabboHotel.Roles.RoleManager.method_2(UInt32 uint_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Roles\RoleManager.cs:line 1177
at GoldTree.HabboHotel.Users.Habbo.method_4() in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:line 600
at GoldTree.HabboHotel.Rooms.RoomUser.HandleSpeech(GameClient Session, String str, Boolean bool_13) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Rooms\RoomUser.cs:line 197
at GoldTree.Communication.Messages.Rooms.Chat.ChatMessageEvent.Handle(GameClient Session, ClientMessage Event) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\Communication\Messages\Rooms\Chat\ChatMessageEvent.cs:line 20
at GoldTree.HabboHotel.GameClients.GameClient.ParsePacket(Byte[]& bytes) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:line 577
28-Sep-14 8:32:18 PM: Error: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at GoldTree.HabboHotel.Roles.RoleManager.method_2(UInt32 uint_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Roles\RoleManager.cs:line 1168
at GoldTree.HabboHotel.Users.Habbo.method_4() in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:line 600
at GoldTree.HabboHotel.Rooms.RoomUser.HandleSpeech(GameClient Session, String str, Boolean bool_13) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Rooms\RoomUser.cs:line 197
at GoldTree.Communication.Messages.Rooms.Chat.ChatMessageEvent.Handle(GameClient Session, ClientMessage Event) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\Communication\Messages\Rooms\Chat\ChatMessageEvent.cs:line 20
at GoldTree.HabboHotel.GameClients.GameClient.ParsePacket(Byte[]& bytes) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:line 577
08.07.2017 14:27:09: System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
bei GoldTree.HabboHotel.Users.Inventory.InventoryComponent..ctor(UInt32 userId, GameClient client, UserDataFactory userdata) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Inventory\InventoryComponent.cs:Zeile 79.
bei GoldTree.HabboHotel.Users.Habbo..ctor(UInt32 UserId, String Username, String Name, String SSO, UInt32 Rank, String Motto, String Look, String Gender, Int32 Credits, Int32 Pixels, Double Activity_Points_LastUpdate, String DataCadastro, Boolean Muted, UInt32 HomeRoom, Int32 NewbieStatus, Boolean BlockNewFriends, Boolean HideInRoom, Boolean HideOnline, Boolean Vip, Int32 Volume, Int32 Points, Boolean AcceptTrading, String LastIp, GameClient Session, UserDataFactory userDataFactory, String last_online, Int32 daily_respect_points, Int32 daily_pet_respect_points, Double vipha_last, Double viphal_last, Boolean FriendStream) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:Zeile 493.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(DataRow habboData, String ssoTicket, GameClient session, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 46.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(String ssoTicket, GameClient Session, UserDataFactory userData, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 12.
bei GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:Zeile 156.
08.07.2017 14:27:24: System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
bei GoldTree.HabboHotel.Users.Inventory.InventoryComponent..ctor(UInt32 userId, GameClient client, UserDataFactory userdata) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Inventory\InventoryComponent.cs:Zeile 79.
bei GoldTree.HabboHotel.Users.Habbo..ctor(UInt32 UserId, String Username, String Name, String SSO, UInt32 Rank, String Motto, String Look, String Gender, Int32 Credits, Int32 Pixels, Double Activity_Points_LastUpdate, String DataCadastro, Boolean Muted, UInt32 HomeRoom, Int32 NewbieStatus, Boolean BlockNewFriends, Boolean HideInRoom, Boolean HideOnline, Boolean Vip, Int32 Volume, Int32 Points, Boolean AcceptTrading, String LastIp, GameClient Session, UserDataFactory userDataFactory, String last_online, Int32 daily_respect_points, Int32 daily_pet_respect_points, Double vipha_last, Double viphal_last, Boolean FriendStream) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:Zeile 493.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(DataRow habboData, String ssoTicket, GameClient session, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 46.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(String ssoTicket, GameClient Session, UserDataFactory userData, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 12.
bei GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:Zeile 156.
08.07.2017 14:29:18: System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
bei GoldTree.HabboHotel.Users.Inventory.InventoryComponent..ctor(UInt32 userId, GameClient client, UserDataFactory userdata) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Inventory\InventoryComponent.cs:Zeile 79.
bei GoldTree.HabboHotel.Users.Habbo..ctor(UInt32 UserId, String Username, String Name, String SSO, UInt32 Rank, String Motto, String Look, String Gender, Int32 Credits, Int32 Pixels, Double Activity_Points_LastUpdate, String DataCadastro, Boolean Muted, UInt32 HomeRoom, Int32 NewbieStatus, Boolean BlockNewFriends, Boolean HideInRoom, Boolean HideOnline, Boolean Vip, Int32 Volume, Int32 Points, Boolean AcceptTrading, String LastIp, GameClient Session, UserDataFactory userDataFactory, String last_online, Int32 daily_respect_points, Int32 daily_pet_respect_points, Double vipha_last, Double viphal_last, Boolean FriendStream) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:Zeile 493.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(DataRow habboData, String ssoTicket, GameClient session, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 46.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(String ssoTicket, GameClient Session, UserDataFactory userData, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 12.
bei GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:Zeile 156.
08.07.2017 14:29:45: System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
bei GoldTree.HabboHotel.Users.Inventory.InventoryComponent..ctor(UInt32 userId, GameClient client, UserDataFactory userdata) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Inventory\InventoryComponent.cs:Zeile 79.
bei GoldTree.HabboHotel.Users.Habbo..ctor(UInt32 UserId, String Username, String Name, String SSO, UInt32 Rank, String Motto, String Look, String Gender, Int32 Credits, Int32 Pixels, Double Activity_Points_LastUpdate, String DataCadastro, Boolean Muted, UInt32 HomeRoom, Int32 NewbieStatus, Boolean BlockNewFriends, Boolean HideInRoom, Boolean HideOnline, Boolean Vip, Int32 Volume, Int32 Points, Boolean AcceptTrading, String LastIp, GameClient Session, UserDataFactory userDataFactory, String last_online, Int32 daily_respect_points, Int32 daily_pet_respect_points, Double vipha_last, Double viphal_last, Boolean FriendStream) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:Zeile 493.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(DataRow habboData, String ssoTicket, GameClient session, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 46.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(String ssoTicket, GameClient Session, UserDataFactory userData, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 12.
bei GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:Zeile 156.
19.07.2017 16:32:38: System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
bei GoldTree.HabboHotel.Users.Inventory.InventoryComponent..ctor(UInt32 userId, GameClient client, UserDataFactory userdata) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Inventory\InventoryComponent.cs:Zeile 79.
bei GoldTree.HabboHotel.Users.Habbo..ctor(UInt32 UserId, String Username, String Name, String SSO, UInt32 Rank, String Motto, String Look, String Gender, Int32 Credits, Int32 Pixels, Double Activity_Points_LastUpdate, String DataCadastro, Boolean Muted, UInt32 HomeRoom, Int32 NewbieStatus, Boolean BlockNewFriends, Boolean HideInRoom, Boolean HideOnline, Boolean Vip, Int32 Volume, Int32 Points, Boolean AcceptTrading, String LastIp, GameClient Session, UserDataFactory userDataFactory, String last_online, Int32 daily_respect_points, Int32 daily_pet_respect_points, Double vipha_last, Double viphal_last, Boolean FriendStream) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:Zeile 493.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(DataRow habboData, String ssoTicket, GameClient session, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 46.
bei GoldTree.HabboHotel.Users.Authenticator.Authenticator.CreateHabbo(String ssoTicket, GameClient Session, UserDataFactory userData, UserDataFactory otherData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:Zeile 12.
bei GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:Zeile 156.
23.08.2017 00:23:29: MySql.Data.MySqlClient.MySqlException (0x80004005): Data truncated for column 'login_timestamp' at row 1
bei MySql.Data.MySqlClient.MySqlStream.ReadPacket()
bei MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
bei MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
bei MySql.Data.MySqlClient.MySqlDataReader.NextResult()
bei MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
bei MySql.Data.MySqlClient.MySqlCommand.ExecuteScalar()
bei GoldTree.Storage.DatabaseClient.ExecuteQuery(String sQuery, Int32 timeout) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\Storage\DatabaseClient.cs:Zeile 33.
bei GoldTree.HabboHotel.Users.UserDataManagement.UserDataFactory..ctor(String ssoTicket, String ipAddress, Boolean getAllData) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\Users\UserDataManagement\UserDataFactory.cs:Zeile 155.
bei GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in d:\Game\ZrQ\project 1\ZRQ EMU\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:Zeile 133.
-
Hallo guten Tag RT, ich hab ein Problem mit dem Client.
Ich starte den Emulator, wenn ich dann den Client öffne kommt sowas:
Homepage:
Emulator:
-
Guten Tag ich benutze die bluecms v2.
Ich hab aber ein kleines Problem. Der Client lädt bis 100% dann passiert nix..
Wie kann ich es beheben?
-
Falscher Link, huch. Probier's damit: https://pastebin.com/wnND3BgJ
Danke hat geklappt
-
Hab aus Versehen doppelt "echo" angegeben. Probier's mit dem neuen Link.
Immernoch das gleiche.
Irgendetwas stimmt nicht
-
Probier's mal damit, sollte jetzt funktionieren.
Leider nicht.
-
-
Hm, dann mal eben die komplette Datei auf Pastebin.com oder sonstiges hochladen. Weiß gerade leider nicht, wie reCMS das anstellt.