Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. warframe.login(config.login.username, config.login.password, function(res){
  2.  
  3. console.log(res);
  4.  
  5. warframe.getGuild(config.login.username, config.login.password, function(view){
  6.  
  7. if (view === "Log-in expired"){
  8. console.log("Log-in expired");
  9. } else if (view === "") {
  10. console.log("no data");
  11. } else {
  12. console.log(view);
  13. }
  14.  
  15. });
  16.  
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement