Jump to content

Soren

Members
  • Posts

    581
  • Joined

  • Last visited

Everything posted by Soren

  1. Hey all:D, i bring you my new FUN map with one of the most original idea for a race map ;D Thx to Wojak for the hunt bot, PD: There is a Marker in the map if you delete it the hunt bot will never work. Video: Link:http://www.mediafire.com/download.php?zmsz1lispikknc4
  2. Si hay una forma de ver la contase;a de los usuarios que seria metiendose en el archivo que contiene todas las cuentas mas sin embargo eso esta visto mal.
  3. Yes, it is thx Solid Close topic please
  4. Ese gui es muy simple y en la communidad salen muchas iguales te recomiendo que uses el login pannel de nextreme tiene mas funciones y de ahi puedes aprender
  5. Hi all, today i wanted to make a map where you where chased by a hunter and a few days ago i saw a post with a script that made a computer hunter to chase you but i cant find it, anyone know the name of that resource? pls i need it.
  6. Aparentemente no sabes que es el myQL yo tampoco asdi que preguntale a solid
  7. Soren

    Map Editor

    Ese dato es muy bueno saberlo
  8. Soren

    Map Editor

    Cierto en fin, como te decia esa funcion es bastante dificil de usar y debes saber la localizacion del objeto (x,y,z) y despues hacer todo el royo del script y eso.
  9. Soren

    Xtremepipes

    It depends if you delete it or not
  10. Soren

    Map Editor

    Si y mucho ;D
  11. Soren

    Map Editor

    Esa funcion es bastante complicada de usar la use 2 veces y me salio mal las 2 veces
  12. Soren

    2 Dudas

    mi error lo puse en client gracias
  13. Soren

    2 Dudas

    No funciono el 1 script no apareces
  14. Oye Mota me permitirias usar este script en mi server? te dare el credito
  15. Soren

    Ads

    Gracias muchas gracias
  16. Soren

    Ads

    Hola a todos el otro dia vi que estaban discutiendo sobre como mandar anuncios y pense usar ese script en mi server pero ya no encontre ese foro en fin busque en la community encontre algunos... todos apestan. en fin aqui lo que hice: local ad = outputChatBox ("#00ff00Wanna help the server out? #ff0000Donate! at #00ffffwww.avh-mta.es.tl", 255, 255, 255, true) outputChatBox ("#00ff00Owner: #ff6600Soren & Majdy", 255, 255, 255, true) outputChatBox ("#00ff00Have you heared about #00fff0Alien vs Humans web page? #996600www.avh-mta.es.tl", 255, 255, 255, true) outputChatBox ("#00ff00Have new ideas for the server? #ff6600Post it in our web page #966009www.avh-mta.es.tl", 255, 255, 255, true) function sendAds ( text ) setTimer ( outpuChatBox( ad#), 10000, 1 ) end Que le falta? diganme porfavor
  17. Soren

    2 Dudas

    Que incomodo me descubriste sigo trabajando en mi gamemode. Aveces me conecto para jugar pero no soy tan activo como antes. Edit: El primer script no me funciono
  18. Soren

    2 Dudas

    no Sirvio el FPS
  19. Soren

    2 Dudas

    1 Duda: Quiero un hacer un script donde si eres de un team en este caso Alien y mueras aparescas en un lugar especifico. y si eres humano en otro lugar 2 Duda: Hice el script de First Person shooter en commando pero quiero usar el mismo commando para usarlo y desactivarlo: function FPSStop (startedresource) if startedresource == getThisResource() then setElementAlpha( getLocalPlayer(), 255) setCameraTarget (getLocalPlayer()) end end addEventHandler ( "onClientResourceStop", getRootElement(), FPSStop) function shakeCamera(weapon) x,y,z = getPedBonePosition ( getLocalPlayer(), 26 ) if weapon == 24 then createExplosion ( x,y,z + 10,12,false,0.4,false) elseif weapon == 25 then createExplosion ( x,y,z + 10,12,false,0.5,false) elseif weapon == 26 then createExplosion ( x,y,z + 10,12,false,0.7,false) elseif weapon == 27 then createExplosion ( x,y,z + 10,12,false,0.5,false) elseif weapon == 29 then createExplosion ( x,y,z + 10,12,false,0.2,false) elseif weapon == 30 then createExplosion ( x,y,z+10,12,false,0.2,false) elseif weapon == 31 then createExplosion ( x,y,z + 10,12,false,0.3,false) elseif weapon == 33 then createExplosion ( x,y,z + 10,12,false,0.3,false) elseif weapon == 34 then createExplosion ( x,y,z + 10,12,false,0.3,false) elseif weapon == 22 then createExplosion ( x,y,z + 10,12,false,0.1,false) elseif weapon == 28 then createExplosion ( x,y,z + 10,12,false,0.2,false) elseif weapon == 32 then createExplosion ( x,y,z + 10,12,false,0.2,false) elseif weapon == 38 then createExplosion ( x,y,z + 10,12,false,0.6,false) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), shakeCamera ) function carcheck(player) if player == getLocalPlayer() then abortCarEnterCheck = setTimer ( checkCarTask, 100, 1 ) setElementCollisionsEnabled(Body, false) setElementAlpha(getLocalPlayer(), 255) end end addEventHandler ( "onClientVehicleStartEnter", getRootElement(), carcheck ) function checkCarTask() local stask = getPedSimplestTask(getLocalPlayer()) if (stask == "TASK_SIMPLE_CAR_GET_IN") or (stask == "TASK_SIMPLE_GO_TO_POINT") or (stask == "TASK_SIMPLE_CAR_OPEN_DOOR_FROM_OUTSIDE") or (stask == "TASK_SIMPLE_CAR_ALIGN") or (stask == "TASK_SIMPLE_CAR_CLOSE_DOOR_FROM_INSIDE") or (stask == "TASK_SIMPLE_CAR_SHUFFLE") or (stask == "TASK_SIMPLE_CAR_DRIVE") or (stask == "TASK_SIMPLE_ACHIEVE_HEADING") then abortCarEnterCheck = setTimer ( checkCarTask, 100, 1 ) elseif (isPedInVehicle(getLocalPlayer()) == false) then --enter vehicle was aborted setElementCollisionsEnabled(Body, true) setElementAlpha(getLocalPlayer(), 0) end end function carexit(player) if player == getLocalPlayer() then setElementCollisionsEnabled(Body, true) setElementAlpha(getLocalPlayer(), 0) end end addEventHandler ( "onClientVehicleExit", getRootElement(), carexit ) addCommandHandler( "fps" FPSStart, true ) else addCommandHandler( "fps" FPSStart, false ) end ayudenme pls
  20. Sa-MP still sucks Anyways if you want to play Alien city online you need to download California Megamod 1.55 the you need to download CA-MP (California multiplayer) its Sa-MP but its the only way to play Alien City online
  21. Really i didn't know about this section
  22. Thx Yakuza California Megamod dont need GTA SA to be installed it contains 16 .exe's all with diferent functions the only problem its that you need 6gb D: Never mind if a link is broken tell me and i will re-upload it
  23. Thanks Tomorrow i will make the mission -Save the Drug Dealer-
  24. Hi all i made this costume mission with DYOM and i used California Megamod 1.55 I used the .exe Alien City.exe Link for DYOM:http://www.gtagarage.com/mods/show.php?id=5038 Link for California Megamod 1.55:http://mods-gta.blogspot.com/2010/02/download-california-megamod-155-by.html Video: Wanna have my mission send me a PM I accept ideas for the next mission
  25. Dante's Inferno was a nice game but this map still one of the most boring things i ever see
×
×
  • Create New...