Jump to content

iFoReX

Members
  • Posts

    1,708
  • Joined

  • Last visited

Everything posted by iFoReX

  1. lo Se, pero tal ves por eso se fue a la quiebra no piensas ?
  2. lol es que se un hosting re bueno para chile se llama http://www.maxigames.cl o http://www.clanznetwork.com/2010/12/mta-san-andreas/ son muy buenos y no son caros ademas son de chile
  3. alexs_steel de donde eres , porque yo conosco servers re buenos pero necesito saber de que pais eres
  4. iFoReX

    Webs Para Stream

    y si tenes algun problema podes descargar mi resource publico con musica en stream : https://community.multitheftauto.com/index.php?p=resources&s=details&id=3946
  5. iFoReX

    Webs Para Stream

    brad yo me cree una web gratis y ai subo musica as eso buee... la mia esta in www.jimdo.com o algo asi
  6. I want do a Gate GUI But I need help about how Set ID of Object please help me GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Label = {} GUIEditor_Edit = {} GUIEditor_Window[1] = guiCreateWindow(200,105,461,417,"",false) GUIEditor_Edit[1] = guiCreateEdit(36,45,76,32,"",false,GUIEditor_Window[1]) GUIEditor_Label[1] = guiCreateLabel(118,49,39,27,"ID",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[1],200,0,0) guiSetFont(GUIEditor_Label[1],"default-bold-small") GUIEditor_Edit[2] = guiCreateEdit(35,77,128,24,"",false,GUIEditor_Window[1]) guiEditSetReadOnly(GUIEditor_Edit[2],true) GUIEditor_Label[2] = guiCreateLabel(167,81,23,24,"X",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[2],200,0,0) guiSetFont(GUIEditor_Label[2],"default-bold-small") GUIEditor_Edit[3] = guiCreateEdit(36,101,129,22,"",false,GUIEditor_Window[1]) guiEditSetReadOnly(GUIEditor_Edit[3],true) GUIEditor_Label[3] = guiCreateLabel(167,103,23,24,"Y",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[3],200,0,0) guiSetFont(GUIEditor_Label[3],"default-bold-small") GUIEditor_Edit[4] = guiCreateEdit(36,122,129,22,"",false,GUIEditor_Window[1]) guiEditSetReadOnly(GUIEditor_Edit[4],true) GUIEditor_Label[4] = guiCreateLabel(167,123,23,24,"Z",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[4],200,0,0) guiSetFont(GUIEditor_Label[4],"default-bold-small") GUIEditor_Memo[1] = guiCreateMemo(209,41,240,111,"Porfavor Poner el ID y aprietar obtener Posicion/ Please type ur ID and press Obtener Posicion\n---------------\nGui By Mota",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Button[1] = guiCreateButton(36,148,130,36,"Obtener Posicion",false,GUIEditor_Window[1]) GUIEditor_Label[5] = guiCreateLabel(9,219,443,14,"-----------------------------------------------------------------------------------",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Label[5],"default-bold-small") GUIEditor_Edit[5] = guiCreateEdit(36,240,128,24,"",false,GUIEditor_Window[1]) GUIEditor_Edit[6] = guiCreateEdit(36,264,128,24,"",false,GUIEditor_Window[1]) GUIEditor_Edit[7] = guiCreateEdit(36,287,128,24,"",false,GUIEditor_Window[1]) GUIEditor_Label[6] = guiCreateLabel(166,241,23,24,"X",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[6],200,0,0) guiSetFont(GUIEditor_Label[6],"default-bold-small") GUIEditor_Label[7] = guiCreateLabel(166,264,23,24,"Y",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[7],200,0,0) guiSetFont(GUIEditor_Label[7],"default-bold-small") GUIEditor_Label[8] = guiCreateLabel(166,291,23,24,"Z",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[8],200,0,0) guiSetFont(GUIEditor_Label[8],"default-bold-small") GUIEditor_Button[2] = guiCreateButton(35,311,130,36,"Obtener Nueva Posicion",false,GUIEditor_Window[1]) GUIEditor_Memo[2] = guiCreateMemo(214,240,230,111,"aqui poner la nueva posicion X, Y y Z/ here put the new positions X, Y, Z\n---------------\nGui By Mota",false,GUIEditor_Window[1]) GUIEditor_Label[9] = guiCreateLabel(466,104,5,5,"",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(357,365,95,43,"Crear Gate or Elevator",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(261,367,95,39,"Cancel",false,GUIEditor_Window[1]) local me = getLocalPlayer(); guiSetVisible( GUIEditor_Window[1], false ); addEventHandler( 'onClientGUIClick', GUIEditor_Button[4], function( btn ) if btn ~= 'left' then return false; end; triggerEvent( 'HP_SetVisible', me, false ); end, false ); addEventHandler( 'onClientGUIClick', root, function( btn ) if btn ~= 'left' then return false; end; if source == GUIEditor_Button[1] then local x, y, z = getElementPosition( me ); guiSetText( GUIEditor_Edit[2], x ); guiSetText( GUIEditor_Edit[3], y ); guiSetText( GUIEditor_Edit[4], z ); elseif source == GUIEditor_Button[2] then local x, y, z = getElementPosition( me ); guiSetText( GUIEditor_Edit[5], x ); guiSetText( GUIEditor_Edit[6], y ); guiSetText( GUIEditor_Edit[7], z ); end; end ); This is my Gui please help me
  7. Dont appear my Gate man EDIT: Now appear
  8. Buee Como dice el titulo are una GUI de Creacion de Gates pero quiero ver si ustds me podrian ayudar con los eventos yo en un rato les dejo mi GUI y unos pocos eventos que me se porfas help me EDIT: aqui esta la GUI asta ahora, No alcanze a aser los eventos mañana los ago pero buee... GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Label = {} GUIEditor_Edit = {} GUIEditor_Window[1] = guiCreateWindow(200,105,461,417,"",false) GUIEditor_Edit[1] = guiCreateEdit(36,45,76,32,"",false,GUIEditor_Window[1]) GUIEditor_Label[1] = guiCreateLabel(118,49,39,27,"ID",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[1],200,0,0) guiSetFont(GUIEditor_Label[1],"default-bold-small") GUIEditor_Edit[2] = guiCreateEdit(35,77,128,24,"",false,GUIEditor_Window[1]) guiEditSetReadOnly(GUIEditor_Edit[2],true) GUIEditor_Label[2] = guiCreateLabel(167,81,23,24,"X",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[2],200,0,0) guiSetFont(GUIEditor_Label[2],"default-bold-small") GUIEditor_Edit[3] = guiCreateEdit(36,101,129,22,"",false,GUIEditor_Window[1]) guiEditSetReadOnly(GUIEditor_Edit[3],true) GUIEditor_Label[3] = guiCreateLabel(167,103,23,24,"Y",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[3],200,0,0) guiSetFont(GUIEditor_Label[3],"default-bold-small") GUIEditor_Edit[4] = guiCreateEdit(36,122,129,22,"",false,GUIEditor_Window[1]) guiEditSetReadOnly(GUIEditor_Edit[4],true) GUIEditor_Label[4] = guiCreateLabel(167,123,23,24,"Z",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[4],200,0,0) guiSetFont(GUIEditor_Label[4],"default-bold-small") GUIEditor_Memo[1] = guiCreateMemo(209,41,240,111,"Porfavor Poner el ID y aprietar obtener Posicion/ Please type ur ID and press Obtener Posicion\n---------------\nGui By Mota",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Button[1] = guiCreateButton(36,148,130,36,"Obtener Posicion",false,GUIEditor_Window[1]) GUIEditor_Label[5] = guiCreateLabel(9,219,443,14,"-----------------------------------------------------------------------------------",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Label[5],"default-bold-small") GUIEditor_Edit[5] = guiCreateEdit(36,240,128,24,"",false,GUIEditor_Window[1]) GUIEditor_Edit[6] = guiCreateEdit(36,264,128,24,"",false,GUIEditor_Window[1]) GUIEditor_Edit[7] = guiCreateEdit(36,287,128,24,"",false,GUIEditor_Window[1]) GUIEditor_Label[6] = guiCreateLabel(166,241,23,24,"X",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[6],200,0,0) guiSetFont(GUIEditor_Label[6],"default-bold-small") GUIEditor_Label[7] = guiCreateLabel(166,264,23,24,"Y",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[7],200,0,0) guiSetFont(GUIEditor_Label[7],"default-bold-small") GUIEditor_Label[8] = guiCreateLabel(166,291,23,24,"Z",false,GUIEditor_Window[1]) guiLabelSetColor(GUIEditor_Label[8],200,0,0) guiSetFont(GUIEditor_Label[8],"default-bold-small") GUIEditor_Button[2] = guiCreateButton(35,311,130,36,"Obtener Nueva Posicion",false,GUIEditor_Window[1]) GUIEditor_Memo[2] = guiCreateMemo(214,240,230,111,"aqui poner la nueva posicion X, Y y Z/ here put the new positions X, Y, Z\n---------------\nGui By Mota",false,GUIEditor_Window[1]) GUIEditor_Label[9] = guiCreateLabel(466,104,5,5,"",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(357,365,95,43,"Crear Gate or Elevator",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(261,367,95,39,"Cancel",false,GUIEditor_Window[1])
  9. What is bad ? function abrir() local puerta = createObject(ID, x, y, z, 0, 0, 0) local ID = 971 local x = 96.55167 local y = 1920.39172 local z = 18.14190 -- move the gate moveObject(puerta,1500,x2,y2,z2) -- get the original position local x2 = 96.55167 local y2 = 1920.39172 local z2 = 21 -- set a timer to close the gate in 5 seconds setTimer(moveObject,5000,1,puerta,1500,x,y,z) end end ) addCommandHandler("abrir51", abrir) Dont appear my Object
  10. dont work ur code solid the GUI appear to all players
  11. Solid I with draken done the GUI and events but the problem is all view the GUI
  12. vitoko nose si te sirva pero buee ai te dejo algo : local objeto = createObject (ID, PosX, PosY, PosZ, 0, 0, 0) local Col = createColCuboid ( PosX, PosY, PosZ, 3, 8, 4 ) function Elevador(player) local accName = getAccountName ( getPlayerAccount ( player ) ) -- get his account name if isObjectInACLGroup ("user.".. accName, aclGetGroup ( "Admin" ) ) then moveObject(objeto,5000 ,PosX, PosY, PosZ) setTimer (moveObject, 5000, 1, objeto, 5000, PosX, PosY, PosZ) end end addEventHandler("onColShapeHit",Col,Elevador) ai te dejo algo ojala te sirba
  13. draken yeah it work but 2 problems 1. When the elevator Up I dont view Up only the player flying 2. When a player is in a col to all players appear the GUI
  14. 1. I change my meta.xml my script to Client-Side 2. Now Appear the objects but dont the GUI
  15. again I have this error of debugging
  16. this is the debbugging [2012-03-26 09:11:50] Rejas restarted successfully [2012-03-26 09:12:02] restart: Requested by Console [2012-03-26 09:12:02] restart: Resource restarting... [2012-03-26 09:12:02] Stopping Rejas [2012-03-26 09:12:02] Resource 'Rejas' changed, reloading and starting [2012-03-26 09:12:02] WARNING: Rejas/xD.lua [Server] is encoded in ANSI instead of UTF-8. Please convert your file to UTF-8. [2012-03-26 09:12:02] Some files in 'Rejas' use deprecated functions. [2012-03-26 09:12:02] Use the 'upgrade' command to perform a basic upgrade of resources. [2012-03-26 09:12:02] Starting Rejas [2012-03-26 09:12:02] WARNING: Script 'Rejas\xD.lua' is not encoded in UTF-8. Loading as ANSI... [2012-03-26 09:12:02] ERROR: Rejas\.lua:6: attempt to call global 'GuiCreateWindow' (a nil value) [2012-03-26 09:12:02] Rejas restarted successfully
  17. now dont appear the objects man
  18. Dont man , something like : == 'guieditoredit[1]' and password == 'mypass' then
  19. Dont man I want when he type the password in my edit how said shadow help me please
  20. I want do a elevator move with a password But I dont know how do ? please help me : local objeto = createObject ( 2669, 1090.67834, -2704.56226, 8.48407, 0, 0, 270) local Col = createColCuboid ( 1088, -2705.56226, 7.5, 5, 2, 4 ) local mover = moveObject local tiempo = setTimer function Elevador(player) local accName = getAccountName ( getPlayerAccount ( player ) ) -- get his account name if isObjectInACLGroup ("user.".. accName, aclGetGroup ( "Everyone" ) ) then mover(objeto ,5000 ,1090.67834, -2704.56226, 18, 0, 0, 0) tiempo (mover, 10000, 1, objeto, 5000, 1090.67834, -2704.56226, 9) end end addEventHandler("onColShapeHit", Col, Elevador) local objeto2 = createObject ( 2669, 1111.05212, -3085.17236, 3.55537, 0, 0, 270) local Col2 = createColCuboid ( 1088, 1111.05212, -3085.17236, 3.55537 ) function Elevador2(player) local accName = getAccountName ( getPlayerAccount ( player ) ) -- get his account name if isObjectInACLGroup ("user.".. accName, aclGetGroup ( "Everyone" ) ) then mover(objeto2 ,5000 ,1111.05212, -3085.17236, 3.55537) tiempo (mover, 10000, 1, objeto2, 5000, 1111.05212, -3085.17236, 3.55537) end end function col2Hit (hitPlayer) if ( hitPlayer == localPlayer ) then guiSetVisible (GUIEditor_Window[1], true) showCursor (true) end end addEventHandler ("onClientColShapeHit", Col2, col2Hit) function crearmygui() GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Edit = {} GUIEditor_Window[1] = guiCreateWindow(195,167,372,244,"Gui Sistema De Mover Objetos",false) GUIEditor_Button[1] = guiCreateButton(61,123,231,49,"Mover",false,GUIEditor_Window[1]) GUIEditor_Edit[1] = guiCreateEdit(53,63,256,44,"Porfavor Pon la Contraseña Correcta----",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(60,180,233,52,"Cancelar",false,GUIEditor_Window[1]) end end
  21. My elevator Dont up what are bad ? :c
  22. Yakusa pero no sube pz :c
×
×
  • Create New...