Jump to content

bbls

Members
  • Posts

    48
  • Joined

  • Last visited

  • Days Won

    1

bbls last won the day on November 20 2017

bbls had the most liked content!

1 Follower

About bbls

  • Birthday November 14

Recent Profile Visitors

1,771 profile views

bbls's Achievements

Rat

Rat (9/54)

19

Reputation

  1. That's what I did, but was wondering if anyone has made one like this
  2. Does anyone know if there exists a snowball script, similar to shown in the video?
  3. /debugscript 3, what error it gives?
  4. Did you add it to the slothbot resource?
  5. local messages = { "Visit our website at www.google.com!", "Did you know? These messages are automated!", "Add another message here!" } local prefix = "[INFO] #FFFFFF" -- message prefix local interval = 5 -- time between messages (minutes) function outputRandomMessage() local msg = messages[math.random(#messages)] outputChatBox(prefix .. msg, root, 3, 169, 244, true) end setTimer(outputRandomMessage, interval * 60 * 1000, 0) Output looks like: [INFO] Did you know? These messages are automated! Are you looking for something like this? Or what do you mean by words loop.
  6. That price doesn't cover even the designing part
  7. GTA V map
  8. How to disable Open mtaserver.conf and find <auth_serial_groups> and change to below <auth_serial_groups></auth_serial_groups> Note: Authorized Serial Account Protection helps prevent your server from getting hacked. If there is a chance any of your admins are using the same password on other servers, then do not disable this feature. It literally says it on the link you just posted
  9. English.
  10. bbls

    Health & Armor

    I will send you one in PM.
  11. Line 69 and 70 is missing account for argument 1? Check the code ..
  12. /debugscript 3 ingame. What does it say?
  13. bbls

    Health & Armor

    I think he is looking for custom nametags resource.
  14. function openP() local guiState = guiGetVisible(aWarpForm) if guiState then guiSetVisible(aWarpForm, false) showCursor(false) elseif not guiState then guiSetVisible(aWarpForm, true) showCursor(true) end end addCommandHandler("panel", openP) You had the command handler inside the function-- start debugging your code and actually read through it. If a code is not working, 90% cases it's a typo / user error. Also use tabs. pls. PS. the code has other issues aswell
  15. He literally said what you have to do Add the first code snippet to a server lua file and the 2nd one to scoreboard's client-side file.
×
×
  • Create New...