Advertisement
LordNoobIV

cMarkAirhawk

May 27th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. cv = {}
  2.  
  3. function Alert(args)
  4.     if table.find(cv, args.vehicle:GetId()) ~= nil then
  5.         Chat:Print("This plane is supposed to have guns", Color(255, 255, 255))
  6.     end
  7. end
  8.  
  9.  
  10. function UpdateTable(args)
  11.     cv = args.v
  12. end
  13.  
  14. Events:Subscribe("LocalPlayerEnterVehicle", Alert)
  15.  
  16. Network:Subscribe("Table", UpdateTable)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement