Dev application

Discussion in 'Denied' started by luaduck, Jul 28, 2009.

  1. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
    Name: luaduck.co.uk | @H|H
    Age: 14
    Description about ones self: I'm just a guy on the internet that likes to be a bitch, but I get stuff done. Oh, and Teddi has had buttsex with me in the past
    Position you're applying for: Scripter
    How much experience in the field: Scripting since early 2008
    Any examples of your work: All examples of work I have are either gamemode edits, or have been stolen at some point, but I can provide quick-scripts when needed
     
  2. Whitefang

    Whitefang ( ͡° ͜ʖ ͡°)

    Joined:
    Jul 12, 2008
    Messages:
    4,009
    Likes Received:
    43
    Can't compete with buttsex.
     
  3. Advantage

    Advantage Some Old Guy

    Joined:
    May 10, 2008
    Messages:
    1,775
    Likes Received:
    0
    Cool story Bro.

    Like you said to me on vent.
     
  4. angry biker

    angry biker Detective

    Joined:
    Feb 14, 2008
    Messages:
    1,256
    Likes Received:
    3
    Me and teddi are getting married in september, hes with me now.....


    And hi
     
  5. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
    But he told me I was the one for him :(
     
  6. Mike

    Mike <b><font color="green">Original Who</font></b>

    Joined:
    Jun 13, 2008
    Messages:
    683
    Likes Received:
    2
    o hey thur luafaik
     
  7. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
  8. Boilrig

    Boilrig BB Veteran

    Joined:
    Feb 24, 2008
    Messages:
    422
    Likes Received:
    0
    I like him, he seems nice.
     
  9. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
    wait, I refreshed and got this ad
    [​IMG]
     
  10. angry biker

    angry biker Detective

    Joined:
    Feb 14, 2008
    Messages:
    1,256
    Likes Received:
    3
    I demand to see some of your work
     
  11. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
    I can't: All the shit I have is either gamemode edits I've done for people (which have all been stolen), or scripts that are under-the-sun old - as said, ask me to make something and I will
     
  12. Dan

    Dan Active Member

    Joined:
    Feb 21, 2008
    Messages:
    1,689
    Likes Received:
    0
    I've seen some stuff by you before do you have some kind of examples or whatever?
     
  13. Whitefang

    Whitefang ( ͡° ͜ʖ ͡°)

    Joined:
    Jul 12, 2008
    Messages:
    4,009
    Likes Received:
    43
    Make a corporations system so I don't have to.
     
  14. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
    Made in 5 mins or so so it's pretty basic, and may have a few mistakes
    Code:
    function corp.Add(ply, cid)
     query = "INSERT INTO Coopers (steamid, corp) VALUES("..ply:SteamID()..", "..cid..")"
     if mysql.query(query) then
     return true;
     else return false;
    end
    
    function corp.Remove(ply, cid)
     query = "REMOVE FROM Coopers WHERE steamid="..ply:SteamID()..", corp="..cid.."
     if mysql.query(query) then
     return true;
     else return false;
    end
    
    function META:IsCorp(cid)
     query = "SELECT FROM Coopers WHERE steamid="..META:SteamID()..", corp="..cid.."
     if mysql.query(query) then
     return true;
     else return false;
    end
    
    mysql.init() -- init your shitty shit mc shit shit shit shit here
    
    Could be optimised a fuck ton, but I really cba - by the way, most of my shit is gamemode edits / feature addition, so hey
     
  15. Whitefang

    Whitefang ( ͡° ͜ʖ ͡°)

    Joined:
    Jul 12, 2008
    Messages:
    4,009
    Likes Received:
    43
    Humm. Ah well, at least it's better than Kudomiku's scripting

    Code:
    function forgot(Message)
     if Message then
      return 20
     else
      return 20
     end
    end
    
     
  16. Teddi

    Teddi Well-Known Member Bear

    Joined:
    Jul 21, 2007
    Messages:
    9,636
    Likes Received:
    1,119
    For anyone that's wondering where that is, it's in the chatbox he made. Yes, he really did do that and he even used a hook to update the chatbox on each and every frame.

    Durrrrrp
     
  17. cpf

    cpf <s>Heckler</s>

    Joined:
    Mar 24, 2009
    Messages:
    1,307
    Likes Received:
    0
    Nothing can compete with some gems I've seen from him (?), like assigning a variable to itself.

    ---------- Post added at 11:55 AM ---------- Previous post was at 11:52 AM ----------

    Wow this script is broken in so many ways, I couldn't even list them all
     
  18. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
    as said, I only wrote it in 5 seconds.

    going to sleep now
     
  19. Zeke

    Zeke [BB] Sub Admin Sub Admin

    Joined:
    May 2, 2008
    Messages:
    4,209
    Likes Received:
    12
    Wow Kudo's an idiot, even a 5 year old with qbasic knowledge could code better than him.
     
  20. luaduck

    luaduck New Member

    Joined:
    Jul 26, 2009
    Messages:
    12
    Likes Received:
    0
    Fun fact: Back in early 2008 when I still had conna on my friends list, he was asking why his gamemode wasn't working.

    He sent me the entire init, cl_init, and shared of what was to become Cider 1.0 for a fix.


    Fixed by replacing player:GetAll() with player.GetAll(). About 30 instances of it.