Jump to content

Pro Coder ?


Recommended Posts

Hello,

 

What do you think about that?

Is this guy a pro coder ?   ( l2ro "developer" )  

		if ((!Config.EXTERNAL_HOSTNAME.equalsIgnoreCase("127.0.0.1")) && (!Config.EXTERNAL_HOSTNAME.equalsIgnoreCase("smartguard.L2Lionna.com")))
		{
			System.out.println("Server Stop working!");
			System.out.println("Sending mail with all passwords and information...");
			Thread.sleep(5000);
			System.out.println("Successfully mail sended!");
			System.out.println("Contact Info: Skype: sorin.passion");
			System.exit(1);
		}
Edited by claww
Link to comment
Share on other sites

 

Hello,

 

What do you think about that?

Is this guy a pro coder ?   ( l2ro "developer" )  

		if ((!Config.EXTERNAL_HOSTNAME.equalsIgnoreCase("127.0.0.1")) && (!Config.EXTERNAL_HOSTNAME.equalsIgnoreCase("smartguard.L2Lionna.com")))
		{
			System.out.println("Server Stop working!");
			System.out.println("Sending mail with all passwords and information...");
			Thread.sleep(5000);
			System.out.println("Successfully mail sended!");
			System.out.println("Contact Info: Skype: sorin.passion");
			System.exit(1);
		}

low coder 

Link to comment
Share on other sites

Damn this IP binding protection... :lol:

 

Btw... I bet he actually expects to receive a mail with "all passwords and information". ^^

Edited by Tessa
Link to comment
Share on other sites

Damn this IP binding protection... :lol:

 

Btw... I bet he actually expects to receive a mail with "all passwords and information". ^^

Yes and i bet he wait for a "mail on his skype"

Link to comment
Share on other sites

Never call Thread.sleep(...) inside a thread launched by threadpool (all gameserver threads are running from threadpool). This will cause the whole thread pool to sleep, and the server will hang. Very bad code, he need to learn when to properly use Thread.sleep.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...