Jump to content

diegofkda

Retired Staff
  • Posts

    1,532
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by diegofkda

  1. Lol!! This is fun! what's the point of that? or what will you get with doing this? well, the correct post should be
  2. I don't know exactly, but did you try to reinstall the server files?
  3. What's wrong with triggerServerEvent? I use it for setMarkerColor, setPlayerNametagColor and setVehicleHeadLightColor on my server and there is no problem .
  4. Preciona las teclas Windows + R, escribe dxdiag y dale a aceptar. Dale a guardar información, y pega la información guardada aca con los tags [ code ] y [ /code ].
  5. Es getRootElement la parte onClientGUIClick, pero solo con poner root basta addEventHandler("onClientGUIClick", root, eso y ya la otra es que esto no es nesesario resourceRoot = getResourceRootElement(getThisResource()) con poner root y resourceRoot, el MTA los lee como getRootElement y getResourceRootElement(getThisResource())
  6. Fatalterror, please try to talk english here, if you want to speak your native language then you can go to subforums, I didn't understand the comments of examples (I won't use Google Translator this time ). About the coding, well that just detects when someone did a goal, but how can the player handle the ball? I guess should be something like this (not tested) function createBall () ball = createObject ( 1097, 0, 0, 5 ) -- just an example the 1097 ballMarker = createMarker ( 0, 0, 0, "cylinder", 0.5, 0, 0, 0, 0 ) -- set the alpha to 0, note that the size isn't the correct I guess attachElements ( ballMarker, ball ) -- attach the marker to the ball addEventHandler ( "onMarkerHit", ballMarker, handleBall ) end function handleBall(player) attachElements ( ball, player ) bindKey ( player, "O", "down", giveball ) end function giveball(player) randomp = getRandomPlayer() attachElements ( ball, randomp ) unbindKey ( player, "O", "down", giveball ) end This should give the ball to a random player, but well, it's not tested.
  7. diegofkda

    Server list spam

    *12 days bump* Try to browse "Real Cars" on server browser .
  8. It's not finished, and I don't liked the city textures .
  9. Great! I would be happy with this one:
  10. That hasn't been added because there aren't enough hebrew people, anyway the language should be added, but as SolidSnake said, go here.
  11. It's impossible to make a ball with a vehicle, the collisions won't replace. A way is using attachElements... it would be something like attach the ball to the player, then bind R for detach and give it to another random player (moveObject should be useful too), or spawn a marker attached to the ball, if the player touches the marker attached to the ball, the ball will be attached to the player.
  12. Do you want to make a gamemode or just a map?
  13. There was an amazing "GTAIV falls" mod for GTA:SA, and it was identic to GTAIV... you fall with the same velocity (x, y, z) than the plane you were driving, etc... and well, as I said, it was identic to GTAIV and the author didn't want to finish it... damn, I would be glad to complete those mods with my small scm knowledge.
  14. I didn't get you a lot, but if I did so this may help you: Do you know what is a root server? well if not, read here this is what I do, so I host my own host Right now, I've opened about 10 servers, and they're working exelent (you can check how fast does it work with my Real Cars server, see my signature) .
  15. Remi-X, you should make some scrollbars for suspension stuff .
  16. diegofkda

    Why is it happening?

    Do you have any modification installed in your GTA:SA?
  17. diegofkda

    Argentinian Host!

    Last time I visited it, there weren't any southamerican locations, the most nearly was USA, but well I lost my password and now I can't login, so I don't know exactly what's going now. Well, for Argentina, you can make your own host, I don't know a lot of southamerican hosts, but I can recommend if you want to play with some friends, well, use your local server - its enough for play with people from your country, but if you want a public 24/7 server, I recommend an USA server, better ping for all .
  18. Well, it's not long... I mean, the history limit is so small, so I rate this as a good suggestion.
  19. Ye, he started to translate the wiki spanish long ago, and he invited some people to do it... the spanish forum is as it is because of The Kid... we hope he comes back. Btw:
  20. Muy buena herramienta, de seguro me servirá cuando nesesite obtener unos codigos RGB o Hex totalmente exactos .
  21. And how to delete a part of the nick?
  22. Thank you very much! Anyway, should be more easy function detectFake(oldn, newn) fakename = string.find(newn, "|FP|") fakename2 = string.find(newn, "(FP)") fakename3 = string.find(newn, "[FP]") if fakename or fakename2 or fakename3 then outputChatBox ("That nametag is not allowed, choose another.", source, 255, 0, 0) cancelEvent() end end addEventHandler ("onPlayerChangeNick", root, detectFake )
  23. How to use? don't know much in that part .
×
×
  • Create New...