Thread: [508] Bulby open interface on login?

Results 1 to 5 of 5
  1. #1 [508] Bulby open interface on login? 
    Registered Member Khalym's Avatar
    Join Date
    Oct 2009
    Posts
    98
    Thanks given
    8
    Thanks received
    1
    Rep Power
    6
    Hi,

    Yea, I was wondering if there is a way an interface opens on after clicking "Click here to play"? I wanted to make an interface which showed the latest update... Like, interface ID 132 with text and all that. Like an example:

    Code:
    p.frames.showInterface(p, 132);
    p.frames.setString(p, "Title", 132, 45);
    p.frames.setString(p, "Text here", 132, 1);
    p.frames.setString(p, "Text here", 132, 2);
    p.frames.setString(p, "Text here", 132, 3);
    p.frames.setString(p, "Text here", 132, 4);
    p.frames.setString(p, "Text here", 132, 5);
    p.frames.setString(p, "Text here", 132, 6);
    p.frames.setString(p, "Text here", 132, 7);
    p.frames.setString(p, "Text here", 132, 8);
    p.frames.setString(p, "Text here", 132, 9);
    p.frames.setString(p, "Text here", 132, 10);
    p.frames.setString(p, "Text here", 132, 11);
    
    p.frames.setString(p, "", 132, 13);
    p.frames.setString(p, "", 132, 16);
    p.frames.setString(p, "", 132, 19);
    p.frames.setString(p, "", 132, 22);
    p.frames.setString(p, "", 132, 25);
    p.frames.setString(p, "", 132, 28);
    p.frames.setString(p, "", 132, 31);
    p.frames.setString(p, "", 132, 34);
    p.frames.setString(p, "", 132, 37);
    p.frames.setString(p, "", 132, 40);
    p.frames.setString(p, "", 132, 43);
    }
    How can I make it open on login? And where do I put it? This is Bulby, so don't give me any Pali's or Espeon's or 317's!!!

    -Khalym
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Feb 2009
    Age
    27
    Posts
    2,861
    Thanks given
    127
    Thanks received
    226
    Rep Power
    700
    Find your login method, and put this in it:
    Code:
    p.frames.showInterface(p, 132);
    p.frames.setString(p, "Title", 132, 45);
    p.frames.setString(p, "Text here", 132, 1);
    p.frames.setString(p, "Text here", 132, 2);
    p.frames.setString(p, "Text here", 132, 3);
    p.frames.setString(p, "Text here", 132, 4);
    p.frames.setString(p, "Text here", 132, 5);
    p.frames.setString(p, "Text here", 132, 6);
    p.frames.setString(p, "Text here", 132, 7);
    p.frames.setString(p, "Text here", 132, 8);
    p.frames.setString(p, "Text here", 132, 9);
    p.frames.setString(p, "Text here", 132, 10);
    p.frames.setString(p, "Text here", 132, 11);
    
    p.frames.setString(p, "", 132, 13);
    p.frames.setString(p, "", 132, 16);
    p.frames.setString(p, "", 132, 19);
    p.frames.setString(p, "", 132, 22);
    p.frames.setString(p, "", 132, 25);
    p.frames.setString(p, "", 132, 28);
    p.frames.setString(p, "", 132, 31);
    p.frames.setString(p, "", 132, 34);
    p.frames.setString(p, "", 132, 37);
    p.frames.setString(p, "", 132, 40);
    p.frames.setString(p, "", 132, 43);
    Reply With Quote  
     

  3. #3  
    Registered Member Khalym's Avatar
    Join Date
    Oct 2009
    Posts
    98
    Thanks given
    8
    Thanks received
    1
    Rep Power
    6
    Quote Originally Posted by Jarba View Post
    Find your login method, and put this in it:
    Code:
    p.frames.showInterface(p, 132);
    p.frames.setString(p, "Title", 132, 45);
    p.frames.setString(p, "Text here", 132, 1);
    p.frames.setString(p, "Text here", 132, 2);
    p.frames.setString(p, "Text here", 132, 3);
    p.frames.setString(p, "Text here", 132, 4);
    p.frames.setString(p, "Text here", 132, 5);
    p.frames.setString(p, "Text here", 132, 6);
    p.frames.setString(p, "Text here", 132, 7);
    p.frames.setString(p, "Text here", 132, 8);
    p.frames.setString(p, "Text here", 132, 9);
    p.frames.setString(p, "Text here", 132, 10);
    p.frames.setString(p, "Text here", 132, 11);
    
    p.frames.setString(p, "", 132, 13);
    p.frames.setString(p, "", 132, 16);
    p.frames.setString(p, "", 132, 19);
    p.frames.setString(p, "", 132, 22);
    p.frames.setString(p, "", 132, 25);
    p.frames.setString(p, "", 132, 28);
    p.frames.setString(p, "", 132, 31);
    p.frames.setString(p, "", 132, 34);
    p.frames.setString(p, "", 132, 37);
    p.frames.setString(p, "", 132, 40);
    p.frames.setString(p, "", 132, 43);
    Explain? I'm a n00b.
    Reply With Quote  
     

  4. #4  
    Registered Member

    Join Date
    Feb 2009
    Age
    27
    Posts
    2,861
    Thanks given
    127
    Thanks received
    226
    Rep Power
    700
    Find your login method. (The method called when you log in.)
    And then, copy this, and paste it into your login method:
    Code:
    p.frames.showInterface(p, 132);
    p.frames.setString(p, "Title", 132, 45);
    p.frames.setString(p, "Text here", 132, 1);
    p.frames.setString(p, "Text here", 132, 2);
    p.frames.setString(p, "Text here", 132, 3);
    p.frames.setString(p, "Text here", 132, 4);
    p.frames.setString(p, "Text here", 132, 5);
    p.frames.setString(p, "Text here", 132, 6);
    p.frames.setString(p, "Text here", 132, 7);
    p.frames.setString(p, "Text here", 132, 8);
    p.frames.setString(p, "Text here", 132, 9);
    p.frames.setString(p, "Text here", 132, 10);
    p.frames.setString(p, "Text here", 132, 11);
    
    p.frames.setString(p, "", 132, 13);
    p.frames.setString(p, "", 132, 16);
    p.frames.setString(p, "", 132, 19);
    p.frames.setString(p, "", 132, 22);
    p.frames.setString(p, "", 132, 25);
    p.frames.setString(p, "", 132, 28);
    p.frames.setString(p, "", 132, 31);
    p.frames.setString(p, "", 132, 34);
    p.frames.setString(p, "", 132, 37);
    p.frames.setString(p, "", 132, 40);
    p.frames.setString(p, "", 132, 43);
    Reply With Quote  
     

  5. #5  
    Registered Member Khalym's Avatar
    Join Date
    Oct 2009
    Posts
    98
    Thanks given
    8
    Thanks received
    1
    Rep Power
    6
    Quote Originally Posted by Jarba View Post
    Find your login method. (The method called when you log in.)
    And then, copy this, and paste it into your login method:
    Code:
    p.frames.showInterface(p, 132);
    p.frames.setString(p, "Title", 132, 45);
    p.frames.setString(p, "Text here", 132, 1);
    p.frames.setString(p, "Text here", 132, 2);
    p.frames.setString(p, "Text here", 132, 3);
    p.frames.setString(p, "Text here", 132, 4);
    p.frames.setString(p, "Text here", 132, 5);
    p.frames.setString(p, "Text here", 132, 6);
    p.frames.setString(p, "Text here", 132, 7);
    p.frames.setString(p, "Text here", 132, 8);
    p.frames.setString(p, "Text here", 132, 9);
    p.frames.setString(p, "Text here", 132, 10);
    p.frames.setString(p, "Text here", 132, 11);
    
    p.frames.setString(p, "", 132, 13);
    p.frames.setString(p, "", 132, 16);
    p.frames.setString(p, "", 132, 19);
    p.frames.setString(p, "", 132, 22);
    p.frames.setString(p, "", 132, 25);
    p.frames.setString(p, "", 132, 28);
    p.frames.setString(p, "", 132, 31);
    p.frames.setString(p, "", 132, 34);
    p.frames.setString(p, "", 132, 37);
    p.frames.setString(p, "", 132, 40);
    p.frames.setString(p, "", 132, 43);
    Sorry if I'm bothering you, but Idk how or what >.<
    Never understood method things, sorry if I annoy you.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •