Post an image please ;)
Posted via Mobile Device
This is a discussion on Update Notification [UberEmu, C#] within the Habbo Releases forums, part of the Habbo Hotel category; Hello, Today im Releasing my Update Notification System : You need a Web Host for Hosting the Update File Step ...

Hello,
Today im Releasing my Update Notification System :
You need a Web Host for Hosting the Update File
Step 1: Create the Update File
Create a file called update.php
Step 2 : Code in EmulatorPHP Code:<?php
$v = $_GET['version'];
if($v == "BUILDNUMMER")
{
echo "No Updates";
}
else
{
echo "Version X is avaible!";
}
?>
Search in UberEnvironment.cs :
And put under it :Code:private static Game Game;
Under the uberEmulator Logo add:Code:public static string Message; public static int Version = 100;
Sry for my bad english i am german ;)Code:string[] update = new string[6]; update[0] = new System.Net.WebClient().DownloadString("URL?v=Version"); Message = update[0]; Message = Message.Substring(0, 70); // Many Hoster add javascript -.- The Substring clean it. Console.WriteLine(UberEnvironment.Message);
Post an image please ;)
Posted via Mobile Device
That's more of just C#. This isn't Habbo related at all.
Gibt's das schon im Ultimate Emulator?
This is not even relevant to habbo, nor a good checker. Check Blackbird for a decent checker if I even left it in there.
Sent from my DROID2 GLOBAL using Tapatalk
Wonderful: D
sorry but what is this?
Uber Logo ???
This is a bad base for an Update Notification.
Use this: http://forum.ragezone.com/f353/v4rok...update-801938/
It's better :')
Sorry, eh, but...
This isn't the same thing, but more optimized? :)Code:Message = new System.Net.WebClient().DownloadString("URL?v=" + Version + ""); Message = Message.Substring(0, 70); // Many Hoster add javascript -.- The Substring clean it. Console.WriteLine(UberEnvironment.Message);