[Share] The Gate-Project menu

User Tag List

Results 1 to 10 of 10
  1. #1
    Dinkleberry's Avatar Private
    Reputation
    39
    Join Date
    Feb 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Share] The Gate-Project

    The Gate Project

    Gate is a combination of a Clientaddon and a Serverscript. With this strong combination, we can create our own Frames in Serverscripts without change something in your Client (especially the Gate Addon you have to "install" one time).

    What Does Gate Allow You To Do?

    Build Frames, Buttons, Checkboxes, Radioboxes, Editboxes, Textboxes, StatusBars
    Call Ok-Frames, Yes-No-Frames, Input-Frames, and over 150 Blizzard StaticPopups

    The Commands for all these Objects are easy:
    Code:
    YourFrame = CreateFrame("Name")
    YourButton = YourFrame:CreateButton("ButtonName")
    and so on.
    Frames should be Parents of Objects. If you call Create-Functions from an Object, the Object become Parent otherwise, the UIParent would be the Parent.
    Code:
    CreateFrame("Name")
    CreateButton("Name")
    CreateCheckBox("Name")
    CreateCheckButton("Name")
    CreateRadioButton("Name")
    CreateStatusBar("Name")
    CreateEditBox("Name")
    CreateInputBox("Name")
    CreateTextBox("Name")
    CreateInputFrame("Name")
    CreateEditFrame("Name")
    CreateOkFrame("Name")
    All Objects created with standard settings, if you want to change something, you can easily do it like this:
    Code:
    YourButton:SetText("ButtonText")
    YourButton:SetYOffset(50)
    YourFrame:SetWidth(400)
    All Arguments you can set are:
    Code:
    SetText("Text")
    SetWidth(Width)
    SetHeight(Height)
    SetParent("Name")
    SetAlpha(Alpha)
    SetXOffset(XOffset)
    SetYOffset(YOffset)
    SetStatusLink("Name")
    SetEvents("Event", Func)
    	-- Only for Frames
    SetCantClose(true/false)
    SetCantMove(ture/false)
    	-- Only for Check/Radiobuttons
    SetChecked(true/false)
    	--Only for Yes/No-Frame
    SetYes("Text")
    SetNo("Text")
    	-- Only for Statusbar
    MinValue(value)
    MaxValue(value)
    Value(value)
    Countdown(time in sec)
    After, you done all this, you have something like that:
    Code:
    local Frame = CreateFrame("TestFrame")
    local Button = Frame:CreateButton("TestButton")
    local Edit = Frame:CreateEditBox("TextEdit")
    local CB = Frame:CreateCheckBox("TestCB")
    Button:SetText("TestButtonText")
    Button:SetEvent("OnClick", function() print("Event coming") end)
    Edit:SetText("TestText")
    Edit:SetYOffset(20)
    Edit:SetStatusLink("TestButton")
    CB:SetYOffset(-20)
    CB:SetStatusLink("TestButton")
    CB:SetText("TestCB")
    Frame:SetText("TestFrame")
    Frame:Send(Player)
    And by Frame:Send(Player), we trigger the Player. It would look like that:
    [Share] The Gate-Project-wowscrnshot041911161023-jpg

    After all, the Player has the Frame, and we e.g. want to hide the frame:
    Button:Hide(Player)

    All Changecommands are all Settings, we can set with Set-Commands + Show, Hide and ChangeOffset.

    So, I hope, I explain all things, you need.

    Download:


    Client Addon (required by all players): http://luapparc.kilu.de/Gate_Client.zip
    Server Script: http://luapparc.kilu.de/Gate_Server.zip

    Credits:

    -Kenuvis
    Last edited by stoneharry; 02-09-2012 at 07:15 AM. Reason: Approved Attachments.

    [Share] The Gate-Project
  2. #2
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Nice share, an excellent script. +Rep

  3. #3
    Dinkleberry's Avatar Private
    Reputation
    39
    Join Date
    Feb 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks. ^_^

  4. #4
    iownapc's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i need to learn how to use this...

  5. #5
    Dinkleberry's Avatar Private
    Reputation
    39
    Join Date
    Feb 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by iownapc View Post
    i need to learn how to use this...
    Basically, the script you add to your server and all players need to use the addon, then you can use the commands added by this release to create GUI's for players from any other script you create.

  6. #6
    thebigman's Avatar Contributor Reliable Trader
    CoreCoins Purchaser
    Reputation
    89
    Join Date
    Dec 2008
    Posts
    605
    Thanks G/R
    2/0
    Trade Feedback
    26 (96%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my apologies for necroposting but this doesnt seem to be getting the views it deserves, this could really be something.

    +4 rep, good sir.

  7. #7
    Miaxos's Avatar Private
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, i'm sorry but links didn't work, so if anybody can re-upload these files, I'll be happy .

  8. #8
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Miaxos View Post
    Hi, i'm sorry but links didn't work, so if anybody can re-upload these files, I'll be happy .
    [Release] Gate-Project - SICKind

    Originally posted here.

  9. #9
    Blackplayer27's Avatar Active Member
    Reputation
    32
    Join Date
    Sep 2010
    Posts
    27
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you pls Reupload the Files ? The page was down =/

  10. #10
    kenuvis's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for sharing dinkleberry.

    A new Update is out.
    Here is the (i am sorry, but to handle to many Forums is to hard) only and original Thread, I update and where i'll will give help.
    w w w . a c - w e b . o r g / f o r u m s / s h o w t h r e a d . p h p ? 1 4 8 4 1 5 - L U A - G a t e - P r o j e c t

    Maybe, i can give some help via icq (272788549) or Skype (kenuvis1).

Similar Threads

  1. behind the gates of silverpine
    By Ziago in forum World of Warcraft Exploration
    Replies: 8
    Last Post: 01-16-2008, 09:14 PM
  2. Behind the gates of Zul Aman
    By crakasteven in forum World of Warcraft Exploration
    Replies: 10
    Last Post: 08-12-2007, 12:36 PM
  3. AB Exploit Past The Gate *Warlock Only*
    By spike335 in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 12-13-2006, 10:34 AM
  4. Get you mount into AV without going outside the gates
    By Suds in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 10-23-2006, 09:55 AM
  5. Through the gated entrance of Stormwind
    By Matt in forum World of Warcraft Guides
    Replies: 16
    Last Post: 07-12-2006, 09:22 PM
All times are GMT -5. The time now is 02:41 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search