Jump to content

DeadlyHawk

Members
  • Posts

    6
  • Joined

  • Last visited

Details

  • Gang
    Ballas

DeadlyHawk's Achievements

Vic

Vic (3/54)

0

Reputation

  1. DeadlyHawk

    Help?

    Great, it works perfectly. Thank you!
  2. DeadlyHawk

    Help?

    Great, it works perfectly. Thank you!
  3. DeadlyHawk

    Help?

    Thanks for the effort, but this is not the help I'm looking for. I need a function that retrieves the localPlayer's weapons names, IDs, and ammo. After retrieving these, it then adds the info we retrieved into multiple rows respectively. For example I got 2 weapons, Deagle and AK-47, it should be as follows: ID Name Ammo 24 Deagle 123/7 30 AK-47 70/30
  4. DeadlyHawk

    Help?

    Thanks for the effort, but this is not the help I'm looking for. I need a function that retrieves the localPlayer's weapons names, IDs, and ammo. After retrieving these, it then adds the info we retrieved into multiple rows respectively. For example I got 2 weapons, Deagle and AK-47, it should be as follows: ID Name Ammo 24 Deagle 123/7 30 AK-47 70/30
  5. DeadlyHawk

    Help?

    Hello there, I'm a beginner in LUA, so I'm trying to learn as much as I can. I'm struggling now with something: I created a gridlist with 3 columns. I want to retrieve all the weapons that the client has, listing their names, IDs, and total ammo into the gridlist created previously. It is necessary for tables and loops to be set, as I stated I'm beginner so I'm trying to learn these stuff. To start with: wepGridlist = guiCreateGridList(20, 27, 335, 177, false, window) guiGridListAddColumn(wepGridlist, "ID", 0.2) guiGridListAddColumn(wepGridlist, "Name", 0.4) guiGridListAddColumn(wepGridlist, "Ammo", 0.3) If you can, please explain the code you're going to post, step by step.
  6. DeadlyHawk

    Help?

    Hello there, I'm a beginner in LUA, so I'm trying to learn as much as I can. I'm struggling now with something: I created a gridlist with 3 columns. I want to retrieve all the weapons that the client has, listing their names, IDs, and total ammo into the gridlist created previously. It is necessary for tables and loops to be set, as I stated I'm beginner so I'm trying to learn these stuff. To start with: wepGridlist = guiCreateGridList(20, 27, 335, 177, false, window) guiGridListAddColumn(wepGridlist, "ID", 0.2) guiGridListAddColumn(wepGridlist, "Name", 0.4) guiGridListAddColumn(wepGridlist, "Ammo", 0.3) If you can, please explain the code you're going to post, step by step.
×
×
  • Create New...