Jump to content

Karuzo

Members
  • Posts

    1,213
  • Joined

  • Last visited

Everything posted by Karuzo

  1. Hey Guys , i want to replace the LS Stadium. but i don't know the ID of the Stadium. and i can't find it anywhere... i want to replace it with my .txd Has someone the ID ?
  2. Karuzo

    Total Visits

    Thank you, that's what i searched for
  3. Karuzo

    Total Visits

    Hi, i know that ressource already. But it's compiled so i want to make one myself.
  4. Karuzo

    Total Visits

    Well it just would count the visits and post it to a dximage. I know how to do the dxpart but i want to know how to count the visitors.
  5. Karuzo

    Total Visits

    Hey guys, i just wanted to ask what do i need for a total visits script ?
  6. So what do i have to change ?
  7. Same problem ... Full Code :
  8. hey guys, i have a scoreboard and i want to draw the Money of the Player , But if i do my code : local players = getElementsByType ( "player" ) local playas = 0 for amt, player in pairs(players) do playas = playas + 1 if (playas <= 20) then local ping = getPlayerPing(player) if (ping >= 250) then r,g,b = 200,20,25 elseif (ping >= 120) then r,g,b = 255,149,4 else r,g,b = 50,200,50 end dxDrawText(getPlayerName ( player ), x/15,y/4*amt/5-700+pls, x/1.9,y/1.9-700+pls, tocolor(255,255,255), 1.2 , "sans","center", "center",false, false,true,true) dxDrawText(getPlayerMoney ( player ).." $", x/3.5,y/4*amt/5-700+pls, x/1.9,y/1.9-700+pls, tocolor(255,255,255), 1.2, "sans","center", "center",false, false, true, true) dxDrawText(ping, x/1.1,y/4*amt/5-700+pls, x/1.9,y/1.9-700+pls, tocolor(r,g,b), 1.2 , "sans","center", "center",false, false,true,true) end end end It just shows the Money from the first player to all ._.
  9. Hey , ive found the wbb-connector , but i dont know how to use the exported functions Can anyone help me ?
  10. Karuzo

    Water walk

    Hey, How bout : you create an object under the player where the player can walk ? But walking on water itself? No.
  11. Well, you have to know that im not pretty good at scripting, I know how to do that with MySql but how do i check the username and password?
  12. Hey guys, I just wanted to ask you if i can make it that the player has to register on the forum to login on the server? Greets,
  13. Hi Community, i have a problem , i used Ruga's Advertisement Script . But i dont wan't that color codes in the Advertisement , how to get rid of them ? Script : function Advertisment(thePlayer, commandName, ...) local players = getElementsByType("player") local playerName = getPlayerName ( thePlayer ) local chatContent = {...} for index, player in ipairs ( players ) do outputChatBox( "[[AD FROM - " .. playerName.. "]] " ..table.concat ( chatContent, " "), player, 0, 255, 0) end end addCommandHandler( "ad", Advertisment )
×
×
  • Create New...