Jump to content

kostor

Member
  • Content Count

    33
  • Joined

  • Last visited

  • Medals

Everything posted by kostor

  1. I know, I know... just thought that if we would look at the code we would might see something we missed. EDIT: look at the FTP. Some is trying to be funny?
  2. // functions change prompt of command line to login to password // and call user login function with callback that set token // if user call it with value that is true function login() { var user = null; command_line.prompt('login: '); // don't stor logins in history if (settings.history) { command_line.history().disable(); } command_line.commands(function(command) { try { echo_command(command); if (!user) { user = command; command_line.prompt('password: '); command_line.mask(true); } else { command_line.mask(false); self.pause(); if (typeof settings.login !== 'function') { throw "Value of login property must be a function"; } var passwd = command; settings.login(user, passwd, function(token) { if (token) { var name = settings.name; name = (name ? '_' + name : ''); $.Storage.set('token' + name, token); $.Storage.set('login' + name, user); //restore commands and run interpreter command_line.commands(commands); // move this to one function init. initialize(); } else { self.error('Wrong password try again'); command_line.prompt('login: '); user = null; } self.resume(); if (settings.history) { command_line.history().enable(); } }); } } catch (e) { display_exception(e, 'LOGIN', self); throw e; } }); } This is the login function. I bet some of you noticed it, but let's check it again. Ahhh.. also try CTRL+R. for a sec it activated a reverse search or something like that...
  3. No. They have coded it. check the Dev Console. You can see a function called History (I think it's a class... not so sure). I'm scanning the code. EDIT: try CTR+R... let's try to understand what that feature does.
  4. I suppose it's nothing, but if you press CTL+P/Up Arrow, you will get the history of what you have written in the username (not sure about PW).
  5. The FTP server is up again... nothing changed. (EDIT: If anyone knows what we should do there... maybe communicate with the one behind this ;) ? )
  6. kostor

    New ArmA 3 ARG started?

    Wonder who took down the FTP server they used to upload the Alpha testers.
  7. kostor

    New ArmA 3 ARG started?

    Didn't they say they will publish more news about the release date in February when they published Limnos Island name changing?
×