Thread: Client side Button

Results 1 to 8 of 8
  1. #1 Client side Button 
    Banned
    Join Date
    Dec 2009
    Posts
    128
    Thanks given
    3
    Thanks received
    0
    Rep Power
    0
    how can i add in the Client Skillcape button?
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Apr 2009
    Posts
    1,727
    Thanks given
    403
    Thanks received
    210
    Rep Power
    390
    Client base?
    Reply With Quote  
     

  3. #3  
    Banned
    Join Date
    Dec 2009
    Posts
    128
    Thanks given
    3
    Thanks received
    0
    Rep Power
    0
    Quote Originally Posted by Phat 4 u View Post
    Client base?
    project insanity
    Reply With Quote  
     

  4. #4  
    Registered Member Mayday Parade's Avatar
    Join Date
    Apr 2009
    Age
    27
    Posts
    495
    Thanks given
    20
    Thanks received
    17
    Rep Power
    8
    It all depends on the client base and whether it is already the "new" emote tab or the old one. (new one is like current runescapes)

    There should already be tutorials for both changing the old tab to the new one and adding in more emotes. Just use the search button or google it if those dont work then i will try to see what i can do.

    Spoiler for LoL:
    Quote Originally Posted by Imbued View Post
    Quote Originally Posted by pasta186 View Post
    That tutorial doesnt walk.
    That's because it got no legs..
    Best report I've sent? "Mass spam? Also in wrong sexual"
    LOL
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    Apr 2009
    Posts
    1,727
    Thanks given
    403
    Thanks received
    210
    Rep Power
    390
    Code:
    public static void emoteTab() {
            RSInterface tab = addTabInterface(147);
            RSInterface scroll = addTabInterface(148);
            tab.totalChildren(1);
            tab.child(0, 148, 0, 1);
            addButton(168, 0, "EMOTE", "Yes");
            addButton(169, 1, "EMOTE", "No");
            addButton(164, 2, "EMOTE", "Bow");
            addButton(165, 3, "EMOTE", "Angry");
            addButton(162, 4, "EMOTE", "Think");
            addButton(163, 5, "EMOTE", "Wave");
            addButton(13370, 6, "EMOTE", "Shrug");
            addButton(171, 7, "EMOTE", "Cheer");
            addButton(167, 8, "EMOTE", "Beckon");
            addButton(170, 9, "EMOTE", "Laugh");
            addButton(13366, 10, "EMOTE", "Jump for Joy");
            addButton(13368, 11, "EMOTE", "Yawn");
            addButton(166, 12, "EMOTE", "Dance");
            addButton(13363, 13, "EMOTE", "Jig");
            addButton(13364, 14, "EMOTE", "Spin");
            addButton(13365, 15, "EMOTE", "Headbang");
            addButton(161, 16, "EMOTE", "Cry");
            addButton(11100, 17, "EMOTE", "Blow kiss");
            addButton(13362, 18, "EMOTE", "Panic");
            addButton(13367, 19, "EMOTE", "Raspberry");
            addButton(172, 20, "EMOTE", "Clap");
            addButton(13369, 21, "EMOTE", "Salute");
            addButton(13383, 22, "EMOTE", "Goblin Bow");
            addButton(13384, 23, "EMOTE", "Goblin Salute");
            addButton(667, 24, "EMOTE", "Glass Box");
            addButton(6503, 25, "EMOTE", "Climb Rope");
            addButton(6506, 26, "EMOTE", "Lean On Air");
            addButton(666, 27, "EMOTE", "Glass Wall");
            addButton(18464, 28, "EMOTE", "Zombie Walk");
            addButton(18465, 29, "EMOTE", "Zombie Dance");
            addButton(15166, 30, "EMOTE", "Scared");
            addButton(18686, 31, "EMOTE", "Rabbit Hop");
            addConfigButton(154, 147, 32, 33,"EMOTE", 41, 47, "Skillcape Emote", 0, 1, 700);
            scroll.totalChildren(33);
            scroll.child(0, 168, 10, 7);
            scroll.child(1, 169, 54, 7);
            scroll.child(2, 164, 98, 14);
            scroll.child(3, 165, 137, 7);
            scroll.child(4, 162, 9, 56);
            scroll.child(5, 163, 48, 56);
            scroll.child(6, 13370, 95, 56);
            scroll.child(7, 171, 137, 56);
            scroll.child(8, 167, 7, 105);
            scroll.child(9, 170, 51, 105);
            scroll.child(10, 13366, 95, 104);
            scroll.child(11, 13368, 139, 105);
            scroll.child(12, 166, 6, 154);
            scroll.child(13, 13363, 50, 154);
            scroll.child(14, 13364, 90, 154);
            scroll.child(15, 13365, 135, 154);
            scroll.child(16, 161, 8, 204);
            scroll.child(17, 11100, 51, 203);
            scroll.child(18, 13362, 99, 204);
            scroll.child(19, 13367, 137, 203);
            scroll.child(20, 172, 10, 253);
            scroll.child(21, 13369, 53, 253);
            scroll.child(22, 13383, 88, 258);
            scroll.child(23, 13384, 138, 252);
            scroll.child(24, 667, 2, 303);
            scroll.child(25, 6503, 49, 302);
            scroll.child(26, 6506, 93, 302);
            scroll.child(27, 666, 137, 302);
            scroll.child(28, 18464, 9, 352);
            scroll.child(29, 18465, 50, 352);
            scroll.child(30, 15166, 94, 356);
            scroll.child(31, 18686, 141, 353);
            scroll.child(32, 154, 5, 401);
            scroll.width = 173; scroll.height = 258; scroll.scrollMax = 450;
        }
    Theres the interface find a tutorial and download the sprite
    Reply With Quote  
     

  6. #6  
    Banned
    Join Date
    Dec 2009
    Posts
    128
    Thanks given
    3
    Thanks received
    0
    Rep Power
    0
    addConfigButton(154, 147, 32, 33,"EMOTE", 41, 47, "Skillcape Emote", 0, 1, 700);
    i got the spirites and this already,but its doesnt works...
    Reply With Quote  
     

  7. #7  
    Respected Member


    Josh's Avatar
    Join Date
    Aug 2008
    Age
    29
    Posts
    2,863
    Thanks given
    6
    Thanks received
    1,342
    Rep Power
    5000
    Quote Originally Posted by paprastutis999 View Post
    addConfigButton(154, 147, 32, 33,"EMOTE", 41, 47, "Skillcape Emote", 0, 1, 700);
    i got the spirites and this already,but its doesnt works...
    show your interface code
    Reply With Quote  
     

  8. #8  
    Registered Member Kota Ko's Avatar
    Join Date
    Aug 2009
    Age
    26
    Posts
    1,040
    Thanks given
    39
    Thanks received
    61
    Rep Power
    39
    Fix your scrollmax
    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
  •