Jump to content

Castillo

Retired Staff
  • Posts

    21,935
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Castillo

  1. Slothbots work with teams, so in order to make a bot follow you, you must be in the same team as he is ( as far as I know ).
  2. Que sistema de registro usas?
  3. Castillo

    Phone

    It's actually all up to you, you must know what do you want, then you just start making it.
  4. https://wiki.multitheftauto.com/wiki/Slothman/Slothbot
  5. What do you mean by "import"?
  6. Looks quite nice, good luck with it!
  7. Deberia funcionar, el script que usa DayZ es el que esta compilado, lo que quiere decir que no pudieron haberlo editado.
  8. Si se puede, lo que tenes que hacer es ejecutar la funcion que quieras despues de que te registres.
  9. Castillo

    i need skin

    You can search for a mod then add it to your server using the engine functions.
  10. Castillo

    i need skin

    The skin model is 286.
  11. Lo maximo que te pueden robar son los scripts client side, que los descarga el usuario al conectarse al servidor.
  12. Castillo

    probleme

    Contact the author of the resource.
  13. Castillo

    probleme

    This section is english only, go to this section to speak arabic: viewforum.php?f=119
  14. Try unbinding "action".
  15. Castillo

    probleme

    I don't understand what do you mean.
  16. Yes, it's possible, you can use shaders.
  17. You must edit the "acl.xml". https://wiki.multitheftauto.com/wiki/ACL
  18. createMarker getElementPosition createVehicle warpPedIntoVehicle onMarkerHit
  19. Castillo

    route

    Post your script.
  20. Castillo

    route

    local currentIndex = 1 local route = { { 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 2 }, { 0, 0, 3 }, { 0, 0, 4 }, } marker = createMarker ( unpack ( route [ currentIndex ] ) ) addEventHandler ( "onMarkerHit", root, function ( ) if ( source == marker ) then currentIndex = ( currentIndex + 1 ) destroyElement ( marker ) marker = nil marker = createMarker ( unpack ( route [ currentIndex ] ) ) end end )
  21. Castillo

    route

    Then you must define the current index the player is, and go incrementing everytime he hits the marker.
  22. Castillo

    Slothbot

    No, la verdad que no.
  23. Castillo

    route

    Use tables. createMarker givePlayerMoney onMarkerHit http://lua-users.org/wiki/TablesTutorial
×
×
  • Create New...