Jump to content

iKaio0991

Members
  • Posts

    1
  • Joined

  • Last visited

iKaio0991's Achievements

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody.

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody. (2/54)

0

Reputation

  1. Hi I made this code for the server to communicate with the client but they do not communicate. Client: local screenW, screenH = guiGetScreenSize() local browser = guiCreateBrowser( screenW * 0.7853, screenH * 0.3594, screenW * 0.2277, screenH * 0.3125, true, true, false) local theBrowser = guiGetBrowser( browser ) addEvent("mostrarJanelaGangster", true) addEventHandler("mostrarJanelaGangster", getRootElement(), function ( ... ) loadBrowserURL( theBrowser, "http://mta/pickups_e_markers_das_bases/window_gang.html" ) end) Server: function criarMarkerGang( x, y, z ) marker = createMarker(x, y, z , "cylinder", 1, 255, 255, 255, 255) return marker end mkg1 = criarMarkerGang(1761.84765625, -1921.3272705078, 22.555364608765) addEventHandler("onMarkerHit", mkg1, function() triggerClientEvent(source, "mostrarJanelaGangster") end)
×
×
  • Create New...