Thread: Interface Help! :)

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1 Interface Help! :) 
    unf0rgott3n
    Guest
    I'm using delta and I'm trying to create a cool login screen, and I need your guys help!

    Ok

    So I have it when you login it shows interface 18681 (The ghost coming towards you and then it turns black.) Ok so the screen turns black. Now I'd like to know how I could make it like this

    After the interface turns black it plays this interface: 18452
    That is black fading into clear.

    So when the character logs in it shows the ghost coming at you, then turns into clear, maybe this uses a timing instance?

    Someone please help...
    REP++!

    Alright so now I pretty much got it working, but now it keeps repeating interface 18452 heres what I did:

    I added:
    if(ghostCount == 1) {
    showInterface(18452);
    }
    if(ghostCount < 1) {
    showInterface(18452);
    ghostCount--;
    }
    Into process()

    and

    declared

    public int ghostCount = 1;

    And in the login method I have
    welcomescreen(); which plays the ghost interface

    So now after it plays interface 18452 repeatedly, someone help?

    P.s. I'm using delta.
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Dec 2008
    Posts
    306
    Thanks given
    2
    Thanks received
    0
    Rep Power
    127
    just set interface when he logs in, when he got the interfaces you set a a int to 1 when the int = 1 you play the other interface.
    Girls Are Like Pokemons, You Need The Ballz To Catch Them !
    Reply With Quote  
     

  3. #3  
    unf0rgott3n
    Guest
    Huh? You just lost me.
    Reply With Quote  
     

  4. #4  
    Registered Member

    Join Date
    Dec 2008
    Posts
    306
    Thanks given
    2
    Thanks received
    0
    Rep Power
    127
    how you mean i lost you?
    Girls Are Like Pokemons, You Need The Ballz To Catch Them !
    Reply With Quote  
     

  5. #5  
    unf0rgott3n
    Guest
    You have to explain to me man, I just started coding . So I have the interface play when he logins with "welcomescreen();" under the login method now what do I do?
    Reply With Quote  
     

  6. #6  
    IvA V1n
    Guest
    In public void initialize (I think thats what it is) do like

    if ghostCount < 1 {
    showInterface(18681);

    and then save the ghostCount to char file
    Reply With Quote  
     

  7. #7  
    unf0rgott3n
    Guest
    I'm guessing you mean Process()
    and I don't think that would work, that would just show the ghost interface?

    ---------- Post added at 05:00 PM ---------- Previous post was at 04:47 PM ----------

    Alright so now I pretty much got it working, but now it keeps repeating interface 18452 heres what I did:

    I added:
    if(ghostCount == 1) {
    showInterface(18452);
    }
    if(ghostCount < 1) {
    showInterface(18452);
    ghostCount--;
    }
    Into process()

    and

    declared

    public int ghostCount = 1;

    And in the login method I have
    welcomescreen(); which plays the ghost interface

    So now after it plays interface 18452 repeatedly, someone help?
    Reply With Quote  
     

  8. #8  
    Codex
    Rowan's Avatar
    Join Date
    Sep 2008
    Age
    28
    Posts
    1,593
    Thanks given
    0
    Thanks received
    20
    Rep Power
    1092
    v1n helped you.
    Reply With Quote  
     

  9. #9  
    unf0rgott3n
    Guest
    Quote Originally Posted by Rowan View Post
    v1n helped you.
    But I'm having trouble what does he mean save it to character?
    Reply With Quote  
     

  10. #10  
    Codex
    Rowan's Avatar
    Join Date
    Sep 2008
    Age
    28
    Posts
    1,593
    Thanks given
    0
    Thanks received
    20
    Rep Power
    1092
    in filemanager make it create a new line of code in the char file.
    Reply With Quote  
     

Page 1 of 2 12 LastLast

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
  •