Jump to content

MadMan

Members
  • Posts

    9
  • Joined

  • Last visited

MadMan's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. Vehicle spawncounter is set to 0 server: addEvent("onPlayerRequestVehicle",true); addEventHandler("onPlayerRequestVehicle",getRootElement(), function(carID) local disallowedVehicles = {{425},{432}} local vehicleSpawnCounter = { } local vehicleSpawnLimit = 2 if getElementType(source) == "player" then for i,v in ipairs (disallowedVehicles) do if (v[1] == carID) then outputChatBox("This is disallowed vehicle!",source,255,0,0) return false end end if vehicleSpawnCounter[source] <= vehicleSpawnLimit then --line 39 playerX,playerY,playerZ = getElementPosition(source) vehicle = createVehicle(carID,playerX + 2,playerY +2, playerZ) vehicleSpawnCounter[source] = vehicleSpawnCounter[source] + 1 else outputChatBox("Vehicle Spawn Limit Reached!",getRootElement(),255,0,0) end end end ) Debug says line 39: attempt to compare nil with number
  2. Attempt to compare a nil number line 39 if vehicleSpawnCounter[source] <= vehicleSpawnLimit then
  3. Thanks, but now there's another problem, i can spawn unlimited ammount of cars how i can set a limit per player for example 2 cars per player ?
  4. Hello, my problem is that i spawn a car,but if someone else spawns another car, then my car dissapears server: addEvent("onPlayerRequestVehicle",true); addEventHandler("onPlayerRequestVehicle",getRootElement(), function(carID) if getElementType(source) == "player" then if isElement(vehicle) then destroyElement(vehicle) end for i,v in ipairs (disallowedVehicles) do if (v[1] == carID) then outputChatBox("This is disallowed vehicle!",source,255,0,0) return false end end playerX,playerY,playerZ = getElementPosition(source) vehicle = createVehicle(carID,playerX + 2,playerY +2, playerZ) end end )
  5. I can't use gui functions on dx functions
  6. No, i have them, the only problem is that notification layer(green) is created behind the login background(blue), Only text is visible if login background is visible, but if login background is destroyed then both notification layer and text are visible
  7. Hello My problem is that the notification image is behind the login background for some reason (if login backround is destroyed) but if login background is visible then it looks like this here's the code addEvent("addNotification",true) addEventHandler("addNotification",getRootElement(), function(text, typ) text = string.gsub(text,"#%x%x%x%x%x%x","") local num = 0 if text == "" or text == nil or not typ then return else for i = 0, #message+1 do if message[num] then num = num+1 else message[num] = {} message[num].text = text message[num].val = true if typ == 1 then message[num].filepath = "success.png" elseif typ == 2 then message[num].filepath = "error.png" elseif typ == 3 then message[num].filepath = "info.png" elseif typ == 4 then message[num].filepath = "warning.png" end setTimer(notifyremove,5000,1,num) end end end end) -- -- -- function renderNotifications() for id, v in pairs(message) do if v.val == true then dxDrawImageSection(x-dxGetTextWidth(v.text, 1, "default-bold")-50, 35*id, dxGetTextWidth(v.text, 1, "default-bold")+50, 32, 0, 0, dxGetTextWidth(v.text, 1, "default-bold")+50, 32, v.filepath) dxDrawText(v.text,x-dxGetTextWidth(v.text,1,"default-bold")-5, 9+35*id, dxGetTextWidth(v.text, 1, "default-bold"), 32, tocolor(255,255,255,255), 1, "default-bold", "left", "top", false, false ,true, true) end end end
×
×
  • Create New...