Advertisement
Guest User

الكود :)

a guest
Oct 31st, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. for i,ha in ipairs(Handling) do
  2.     local row = guiGridListAddRow(grid)
  3.     guiGridListSetItemText(grid,row,1,''..i..'-',false,false)
  4.     guiGridListSetItemText(grid,row,2,ha[1],false,false)
  5.     guiGridListSetItemData(grid,row,1,{ha[2],ha[3],ha[4]})
  6.     guiGridListSetItemColor(grid,row,2,math.random(0,200),math.random(0,200),math.random(0,188))
  7.     guiGridListSetItemColor(grid,row,1,math.random(0,200),math.random(0,200),math.random(0,188))
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement