Sierra ~ Java // Netty // MySQL // BoneCP // Plugin System (Like Bukkit!)

Page 24 of 103 FirstFirst ... 1416171819202122232425262728293031323474 ... LastLast
Results 346 to 360 of 1536
  1. #346
    Valued Member jomp16 is offline
    MemberRank
    Jan 2012 Join Date
    BrazilLocation
    115Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Hi Quackster, I managed to make the Sierra Emulator run on the new release of Habbo with these packages this topic: http://forum.ragezone.com/f353/packe...2302-a-841813/

    I will post print, I'm not using my SWF but I'm using the Habbo.com

    http://tynipic.com/images/jdv1335802379k.png

    Oh and one question, which program I can see the packages in the Habbo.swf and manually add the Sierra?

  2. #347
    ส็็็็็็็ Bloodraven is offline
    MemberRank
    Sep 2009 Join Date
    AntarcticaLocation
    2,414Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Quackster View Post
    Computer is currently infected with the following trojans

    • Sirefef.AC
    • Sirefef.AH


    It has disabled localhost/127.0.0.1 from loading. I'll use a different computer.
    Backup all of your stuff, Reinstall Windows 7, I've had a rat (I'm really suspicious of sites that use Java now :P, Got infected by a drive by) and it just pisses you off.

  3. #348
    this is title Shredinator is offline
    MemberRank
    May 2011 Join Date
    399Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by zJordan View Post
    Backup all of your stuff, Reinstall Windows 7, I've had a rat (I'm really suspicious of sites that use Java now :P, Got infected by a drive by) and it just pisses you off.
    Or just remove it.. They're not hard to find, most of the time.

  4. #349
    Member Pyreen is offline
    MemberRank
    Aug 2010 Join Date
    72Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Shredinator View Post
    Or just remove it.. They're not hard to find, most of the time.
    Yep, googled it, found this:
    Remove Trojan:Win32/Sirefef.AC Virus-Trojan:Win32/Sirefef.AC Removal | VirusRemovalHelps.com

    Hope it is help full and you can go on with Sierra, as I like it!

    - Pyreen

  5. #350
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,476Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    I had no choice but to format my computer. The trojan was inside the memory of the computer. Clever bastard...

    I shall post some updates shortly as I have just set-up Sierra :)


  6. #351
    Proficient Member Nathandj is offline
    MemberRank
    Jan 2012 Join Date
    The NetherlandsLocation
    194Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Nice :D also updated on github?

  7. #352
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,476Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Nathandj View Post
    Nice :D also updated on github?
    I haven't coded anything since the infection.

  8. #353
    Apprentice FriendPT is offline
    MemberRank
    Apr 2012 Join Date
    15Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    This man post his emulator here and doesn't help. His project NEVER go grow.

  9. #354
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by FriendPT View Post
    This man post his emulator here and doesn't help. His project NEVER go grow.
    Says the word `Development` something to you?

  10. #355
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,476Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Coded commands!

    What commands??

    - about
    - manipulate someone's chat (:troll <user> <message>)

    If you have no access to the command, you'll simply get 'Access is denied, please fuck off'

    Don't worry I'll code more later!





    Code:
    package sierra.messages.room;
    
    import sierra.SierraEnvironment;
    import sierra.composers.Outgoing;
    import sierra.messages.MessageEvent;
    import sierra.network.clients.Session;
    import sierra.packethelper.ClientMessage;
    import sierra.packethelper.ServerMessage;
    
    public class Chat implements MessageEvent {
    
    	@Override
    	public void Parse(Session Session, ClientMessage Request)
    	{
    		if (Session.GetRoomUser().CurrentlyInRoom)
    		{
    			String ToSay = Request.popFixedString();
    
    			if (!ToSay.startsWith(":"))
    			{
    				ServerMessage Message = new ServerMessage();
    
    				Message.Initialize(Outgoing.Talk);
    				Message.AppendInt32(Session.GetHabbo().Id);
    				Message.AppendString(ToSay);
    				Message.AppendInt32(0);
    				Message.AppendInt32(0);
    				Message.AppendInt32(0);
    				Session.GetRoomUser().GetRoom().Send(Message);
    			}
    			else
    			{
    				GetCommands(Session, ToSay, ToSay.split(" "));
    			}
    		}
    	}
    	public void GetCommands(Session Session, String ToSay, String[] Arguments)
    	{
    		ServerMessage Message = new ServerMessage();
    
    		String Command = Arguments[0];
    
    		if (Command.equals(":about"))
    		{
    			StringBuilder Builder = new StringBuilder();
    			{
    				Builder.append("Sierra Emulator\r\n");
    				Builder.append("----\r\n");
    				Builder.append("Created by Quackster\r\n");
    				Builder.append("\r\n");
    				Builder.append("This emulator is created in JAVA!\r\n");
    				Builder.append("If you would to donate to the creator http://quackster.net/donate/\r\n");
    			}
    
    			Message.Initialize(Outgoing.Alert);
    			Message.AppendString(Builder.toString());
    			Message.AppendString("");
    			Session.Send(Message);
    		}
    		else if (Command.equals(":troll"))
    		{
    			if (Session.GetHabbo().HasStaffRights())
    			{
    				Session User = SierraEnvironment.getConnection().getSessions().getUser(Arguments[1]);
    
    				if (User != null)
    				{
    					Message.Initialize(Outgoing.Talk);
    					Message.AppendInt32(User.GetHabbo().Id);
    					Message.AppendString(ToSay.substring(Arguments[0].length() + Arguments[1].length() + 2));
    					Message.AppendInt32(0);
    					Message.AppendInt32(0);
    					Message.AppendInt32(0);
    					Session.GetRoomUser().GetRoom().Send(Message);
    				}
    			}
    			else
    			{
    				this.NoPermissions(Session);
    			}
    		}
    		else
    		{
    			int SmileState = 0;
    
    			if (ToSay.contains(":)") || ToSay.contains("=)") || ToSay.contains(":D") || ToSay.contains("=D"))
    				SmileState = 1;
    
    			if (ToSay.contains(":@") || ToSay.contains(">:(") || ToSay.contains(">:@"))
    				SmileState = 2;
    
    			if (ToSay.contains(":o") || ToSay.contains("D:"))
    				SmileState = 3; 
    
    			if (ToSay.contains(":(") || ToSay.contains(":'(") || ToSay.contains("=(") || ToSay.contains("='("))
    				SmileState = 4;
    
    			Message.Initialize(Outgoing.Talk);
    			Message.AppendInt32(Session.GetHabbo().Id);
    			Message.AppendString(ToSay);
    			Message.AppendInt32(SmileState);
    			Message.AppendInt32(0);
    			Message.AppendInt32(0);
    			Session.GetRoomUser().GetRoom().Send(Message);
    		}
    	}
    	public void NoPermissions(Session Session)
    	{
    		ServerMessage Message = new ServerMessage();
    
    		Message.Initialize(Outgoing.Alert);
    		Message.AppendString("Access denied, please fuck off.");
    		Message.AppendString("");
    		Session.Send(Message);
    	}
    }

  11. #356
    Account Upgraded | Title Enabled! DoctorCooper is offline
    MemberRank
    Oct 2011 Join Date
    R:\aGEZONELocation
    317Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    I'v been gone for a while. Quackster good job and I still wish you luck! You have done alot since I was last on RZ :D

  12. #357
    Creative One. TheEngineer is offline
    MemberRank
    Oct 2011 Join Date
    Your RouterLocation
    500Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    You sir, deserve quality icecream :)

  13. #358
    Apprentice Goir is offline
    MemberRank
    Nov 2011 Join Date
    20Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by jomp16 View Post
    Hey Quackster, I was looking in the Kekomundo and found this emulator to client crypto made in java, open source, He stopped the project, I will pass the download link for you to analyze and add in the Sierra Emulator

    Emulator: EnergyFREE.zip
    Database: energyfree.sql
    VirusTotal: https://www.virustotal.com/file/c9b4...is/1335624037/

    The emulator runs only in RELEASE63-201201190922-633225503

    In CMS or Client that you have put this:
    Code:
    <?php
    $Socket = fsockopen('127.0.0.1', 4001);
    fwrite($Socket, "CONNECT,Goir,127.0.0.1");
    fclose($Socket);
    ?>
    Substituting "Goir" for your username (if you do not heap up on localhost) replace 127.0.0.1 with your ip
    that emulator is mine and I'm developing it.
    Quackster if you need assistance, tell me.

  14. #359
    Ultra Light Beam Makarov is offline
    MemberRank
    Apr 2010 Join Date
    GothamLocation
    3,622Posts
    Would look about allot cleaner in a switch block!

    Sent from my DROID RAZR using Tapatalk 2

  15. #360
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,476Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Makarov View Post
    Would look about allot cleaner in a switch block!

    Sent from my DROID RAZR using Tapatalk 2
    JAVA's faggotry switch function doesn't allow strings.



Advertisement