-
Posts
1,708 -
Joined
-
Last visited
Everything posted by iFoReX
-
D: in my server doesnt work DD:
-
Doesnt work ur code TAPL
-
I reconnect in San fierro and I appear in SF
-
in my server the projectile doesnt shot
-
CRIPT ERROR: spawnSystem/server.lua:15: ')' expected near '='
-
I dont appear in Positions saved
-
but I appear down where I save my positions
-
when I login I appear in sf background, but when I dead I appear in the good positions c:
-
Ook Now I appear in admin team but I spawn in SF background ----SPAWN-System-By-ElMota--- createTeam("Admin",180,0,0) createTeam("Todos",0,180,0) addEventHandler("onPlayerLogin",root,function(_,acc) fadeCamera(source,true) setCameraTarget(source) local accName = getAccountName(acc) if isObjectInACLGroup("user."..accName, aclGetGroup("Admin")) then local posX = getAccountData(acc,"PosX") local posY = getAccountData(acc,"PosY") local posZ = getAccountData(acc,"PosZ") local Skin = getAccountData(acc,"Skin") local dim = getAccountData(acc,"Dimension") local int = getAccountData(acc,"Int") local theTeam = getTeamFromName("Admin") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(source,247.00835, 1859.81372, 14.08401,0,282,0,0,theTeam) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(source,posX,posY,posZ,0,Skin,dim,int,theTeam) end else local theTeamE = getTeamFromName("Todos") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(source,-342.89999389648,1541.8000488281,74.900001525879,0,16,0,0,theTeamE) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(source,posX,posY,posZ,0,Skin,dim,int,theTeamE) end end end) addEventHandler("onPlayerQuit",root,function() local playeraccount = getPlayerAccount (source) if (playeraccount) and not isGuestAccount(playeraccount) then local posX,PosY,PosZ = getElementPosition(source) setAccountData(playeraccount,"PosX",posX) setAccountData(playeraccount,"PosY",posY) setAccountData(playeraccount,"PosZ",posZ) local skin = getElementModel(source) setAccountData(playeraccount,"Skin",skin) local dim = getElementDimension(source) setAccountData(playeraccount,"Dimension",dim) local int = getElementInterior(source) setAccountData(playeraccount,"Int",int) end end) addEventHandler("onPlayerWasted",root,function(_,acc,killer) if killer ~= acc then local accName = getAccountName(acc) if isObjectInACLGroup("user."..accName, aclGetGroup("Admin")) then spawnPlayer(source,247.00835, 1859.81372, 14.08401,0,282,0,0,theTeam) elseif not isObjectInACLGroup("user."..accName, aclGetGroup("Admin")) then spawnPlayer(source,-342.89999389648,1541.8000488281,74.900001525879,0,16,0,0,theTeamE) end end end )
-
I appear in team Todos I doesnt appear in team Admin ----SPAWN-System-By-ElMota--- createTeam("Admin",180,0,0) createTeam("Todos",0,180,0) addEventHandler("onPlayerLogin",root,function(_,acc) local accName = getAccountName(acc) if isObjectInACLGroup("user."..accName, aclGetGroup("Admin")) then local posX = getAccountData(acc,"PosX") local posY = getAccountData(acc,"PosY") local posZ = getAccountData(ac,"PosZ") local Skin = getAccountData(acc,"Skin") local dim = getAccountData(acc,"Dimension") local int = getAccountData(acc,"Int") local theTeam = getTeamFromName("Admin") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(source,247.04785, 1860.30615, 14.08401,0,282,0,0,theTeam) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(source,posX,posY,posZ,0,Skin,dim,int,theTeam) end else local theTeamE = getTeamFromName("Todos") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(source,-342.89999389648,1541.8000488281,74.900001525879,0,16,0,0,theTeamE) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(source,posX,posY,posZ,0,Skin,dim,int,theTeamE) end end end) addEventHandler("onPlayerQuit",root,function() local playeraccount = getPlayerAccount (source) if (playeraccount) and not isGuestAccount(playeraccount) then local posX,PosY,PosZ = getElementPosition(source) setAccountData(playeraccount,"PosX",posX) setAccountData(playeraccount,"PosY",posY) setAccountData(playeraccount,"PosZ",posZ) local skin = getElementModel(source) setAccountData(playeraccount,"Skin",skin) local dim = getElementDimension(source) setAccountData(playeraccount,"Dimension",dim) local int = getElementInterior(source) setAccountData(playeraccount,"Int",int) end end)
-
I appear in Mount chilliad and doesnt set the team
-
----SPAWN-System-By-ElMota--- createTeam("Admin",180,0,0) createTeam("Todos",0,180,0) addEventHandler("onPlayerLogin",root,function(thePlayer) local acc = getAccountName(getPlayerAccount(thePlayer)) if isObjectInACLGroup ("user."..acc, aclGetGroup ( "Admin" ) ) then local posX = getAccountData(thePlayer,"PosX") local posY = getAccountData(thePlayer,"PosY") local posZ = getAccountData(thePlayer,"PosZ") local Skin = getAccountData(thePlayer,"Skin") local dim = getAccountData(thePlayer,"Dimension") local int = getAccountData(thePlayer,"Int") local theTeam = getTeamFromName("Admin") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(thePlayer,247.04785, 1860.30615, 14.08401,0,282,0,0,getPlayerTeam(theTeam)) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(thePlayer,posX,posY,posZ,0,Skin,dim,int,theTeam) end elseif not isObjectInACLGroup ("user."..acc, aclGetGroup ( "Admin" ) ) then local theTeamE = getTeamFromName("Todos") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(thePlayer,-342.89999389648,1541.8000488281,74.900001525879,0,16,0,0,theTeamE) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(thePlayer,posX,posY,posZ,0,Skin,dim,int,theTeamE) end end end ) addEventHandler("onPlayerQuit",root,function() local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) and not isGuestAccount ( playeraccount ) then local posX,PosY,PosZ = getElementPosition(source) setAccountData(source,"PosX",posX) setAccountData(source,"PosY",posY) setAccountData(source,"PosZ",posZ) local skin = getElementModel(source) setAccountData(source,"Skin",skin) local dim = getElementDimension(source) setAccountData(source,"Dimension",dim) local int = getElementInterior(source) setAccountData(source,"Int",int) end end ) doesnt work
-
Again doesnt work ----SPAWN-System-By-ElMota--- createTeam("Admin",180,0,0) createTeam("Todos",0,180,0) addEventHandler("onResourceStart",resourceRoot,function(thePlayer) local acc = getAccountName(getPlayerAccount(thePlayer)) if isObjectInACLGroup ("user."..acc, aclGetGroup ( "Admin" ) ) then local posX = getAccountData(thePlayer,"PosX") local posY = getAccountData(thePlayer,"PosY") local posZ = getAccountData(thePlayer,"PosZ") local Skin = getAccountData(thePlayer,"Skin") local dim = getAccountData(thePlayer,"Dimension") local int = getAccountData(thePlayer,"Int") local theTeam = getTeamFromName("Admin") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(thePlayer,247.04785, 1860.30615, 14.08401,0,282,0,0,getPlayerTeam(theTeam)) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(thePlayer,posX,posY,posZ,0,Skin,dim,int,theTeam) end elseif not isObjectInACLGroup ("user."..acc, aclGetGroup ( "Admin" ) ) then local theTeamE = getTeamFromName("Todos") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(thePlayer,-342.89999389648,1541.8000488281,74.900001525879,0,16,0,0,theTeamE) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(thePlayer,posX,posY,posZ,0,Skin,dim,int,theTeamE) end end end ) addEventHandler("onPlayerQuit",root,function() local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) and not isGuestAccount ( playeraccount ) then local posX,PosY,PosZ = getElementPosition(source) setAccountData(source,"PosX",posX) setAccountData(source,"PosY",posY) setAccountData(source,"PosZ",posZ) local skin = getElementModel(source) setAccountData(source,"Skin",skin) local dim = getElementDimension(source) setAccountData(source,"Dimension",dim) local int = getElementInterior(source) setAccountData(source,"Int",int) end end )
-
why the player doesnt spawn when I activate the resource ? ----SPAWN-System-By-ElMota--- createTeam("Admin",180,0,0) createTeam("Todos",0,180,0) addEventHandler("onResourceStart",resourceRoot,function(thePlayer) local acc = getAccountName(getPlayerAccount(thePlayer)) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then local posX = getAccountData(thePlayer,"PosX") local posY = getAccountData(thePlayer,"PosY") local posZ = getAccountData(thePlayer,"PosZ") local Skin = getAccountData(thePlayer,"Skin") local dim = getAccountData(thePlayer,"Dimension") local int = getAccountData(thePlayer,"Int") local theTeam = getTeamFromName("Admin") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(thePlayer,247.04785, 1860.30615, 14.08401,0,282,0,0,getPlayerTeam(theTeam)) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(thePlayer,posX,posY,posZ,0,Skin,dim,int,theTeam) end elseif not isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then local theTeamE = getTeamFromName("Todos") if not posX and not posY and not posZ and not Skin and not dim and not int then spawnPlayer(thePlayer,-342.89999389648,1541.8000488281,74.900001525879,0,16,0,0,theTeamE) elseif posX and posY and posZ and Skin and dim and int then spawnPlayer(thePlayer,posX,posY,posZ,0,Skin,dim,int,theTeamE) end end end ) addEventHandler("onPlayerQuit",root,function() local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) and not isGuestAccount ( playeraccount ) then local posX,PosY,PosZ = getElementPosition(source) setAccountData(source,"PosX",posX) setAccountData(source,"PosY",posY) setAccountData(source,"PosZ",posZ) local skin = getElementModel(source) setAccountData(source,"Skin",skin) local dim = getElementDimension(source) setAccountData(source,"Dimension",dim) local int = getElementInterior(source) setAccountData(source,"Int",int) end end )
-
ya arregle ese problema, ahora me podrian ayudar con esto ? el misil no se dispara cl-side GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Grid = {} GUIEditor_Window[1] = guiCreateWindow(0,0.135,0.2575,0.6017,"Elige un Misil",true) guiWindowSetMovable(GUIEditor_Window[1],false) guiWindowSetSizable(GUIEditor_Window[1],false) GUIEditor_Grid[1] = guiCreateGridList(9,23,188,243,false,GUIEditor_Window[1]) guiGridListSetSelectionMode(GUIEditor_Grid[1],2) col = guiGridListAddColumn(GUIEditor_Grid[1],"Misiles",0.-- s8) --> GUIEditor_Button[1] = guiCreateButton(9,271,188,38,"Elegir",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(9,312,188,38,"Cancelar",false,GUIEditor_Window[1]) GUIEditor_Window[2] = guiCreateWindow(0,0.135,0.1912,0.5217,"Opciones",true) GUIEditor_Button[6] = guiCreateButton(9,158,43,41,"<",false,GUIEditor_Window[2]) GUIEditor_Button[7] = guiCreateButton(49,121,43,41,"^",false,GUIEditor_Window[2]) GUIEditor_Button[8] = guiCreateButton(89,157,43,41,">",false,GUIEditor_Window[2]) GUIEditor_Button[9] = guiCreateButton(50,196,43,41,"v",false,GUIEditor_Window[2]) GUIEditor_Button[10] = guiCreateButton(9,264,133,34,"Cancelar",false,GUIEditor_Window[2]) guiSetVisible(GUIEditor_Window[1],false) guiSetVisible(GUIEditor_Window[2],false) showCursor(false) local marker = createMarker(213.9440612793, 1818.9245605469, 5.9,"cylinder",1,0,120,0,140) addEventHandler("onClientMarkerHit",root,function(hitPlayer, matchingDimension) if hitPlayer == getLocalPlayer() then if source == marker then guiSetVisible(GUIEditor_Window[1],true) showCursor(true) end end end ) addEventHandler("onClientResourceStart",resourceRoot,function() local row = guiGridListAddRow(GUIEditor_Grid[1]) guiGridListSetItemText(GUIEditor_Grid[1],row,col,"LanzaMisil 1",false,false) end ) addEventHandler("onClientGUIClick",root,function() if source == GUIEditor_Button[3] then guiSetVisible(GUIEditor_Window[1],false) showCursor(false) elseif source == GUIEditor_Button[1] then local xr,xc = guiGridListGetSelectedItem(GUIEditor_Grid[1]) local item = guiGridListGetItemText(GUIEditor_Grid[1],xr,xc) if item == 'LanzaMisil 1' then triggerServerEvent("CameraM1",getLocalPlayer()) guiSetVisible(GUIEditor_Window[2],true) guiSetVisible(GUIEditor_Window[1],false) addEventHandler("onClientClick",root,tirar) end elseif source == GUIEditor_Button[10] then setCameraTarget(getLocalPlayer()) guiSetVisible(GUIEditor_Window[1],true) guiSetVisible(GUIEditor_Window[2],false) elseif source == GUIEditor_Button[6] then triggerServerEvent("moveLeft",getLocalPlayer()) elseif source == GUIEditor_Button[7] then triggerServerEvent("moveUp",getLocalPlayer()) elseif source == GUIEditor_Button[8] then triggerServerEvent("moveRight",getLocalPlayer()) elseif source == GUIEditor_Button[9] then triggerServerEvent("moveDown",getLocalPlayer()) end end ) function tirar(CursorX,CursorY,CursorZ) local cursorX,cursorY,cursorZ,worldX,worldY,worldZ = getCursorPosition() if not createProjectile(getLocalPlayer(),19,CursorX,CursorY,CursorZ) then outputChatBox("el misil no se pudo crear",getLocalPlayer()) end end sv-side addEvent("CameraM1",true) addEventHandler("CameraM1",root,function() local camera = setCameraMatrix(source,189.95697021484, 2081.3354492188, 26,226.38482666016, 2045.6298828125, 32.410900115967) end ) addEvent("moveLeft",true) addEventHandler("moveLeft",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly+5,lz) end ) addEvent("moveUp",true) addEventHandler("moveUp",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly,lz+5) end ) addEvent("moveRight",true) addEventHandler("moveRight",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly-5,lz) end ) addEvent("moveDown",true) addEventHandler("moveDown",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly,lz-5) end )
-
why the proyectile doesnt shot ? cl-side GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Grid = {} GUIEditor_Window[1] = guiCreateWindow(0,0.135,0.2575,0.6017,"Elige un Misil",true) guiWindowSetMovable(GUIEditor_Window[1],false) guiWindowSetSizable(GUIEditor_Window[1],false) GUIEditor_Grid[1] = guiCreateGridList(9,23,188,243,false,GUIEditor_Window[1]) guiGridListSetSelectionMode(GUIEditor_Grid[1],2) col = guiGridListAddColumn(GUIEditor_Grid[1],"Misiles",0.-- s8) --> GUIEditor_Button[1] = guiCreateButton(9,271,188,38,"Elegir",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(9,312,188,38,"Cancelar",false,GUIEditor_Window[1]) GUIEditor_Window[2] = guiCreateWindow(0,0.135,0.1912,0.5217,"Opciones",true) GUIEditor_Button[6] = guiCreateButton(9,158,43,41,"<",false,GUIEditor_Window[2]) GUIEditor_Button[7] = guiCreateButton(49,121,43,41,"^",false,GUIEditor_Window[2]) GUIEditor_Button[8] = guiCreateButton(89,157,43,41,">",false,GUIEditor_Window[2]) GUIEditor_Button[9] = guiCreateButton(50,196,43,41,"v",false,GUIEditor_Window[2]) GUIEditor_Button[10] = guiCreateButton(9,264,133,34,"Cancelar",false,GUIEditor_Window[2]) guiSetVisible(GUIEditor_Window[1],false) guiSetVisible(GUIEditor_Window[2],false) showCursor(false) local marker = createMarker(213.9440612793, 1818.9245605469, 5.9,"cylinder",1,0,120,0,140) addEventHandler("onClientMarkerHit",root,function(hitPlayer, matchingDimension) if hitPlayer == getLocalPlayer() then if source == marker then guiSetVisible(GUIEditor_Window[1],true) showCursor(true) end end end ) addEventHandler("onClientResourceStart",resourceRoot,function() local row = guiGridListAddRow(GUIEditor_Grid[1]) guiGridListSetItemText(GUIEditor_Grid[1],row,col,"LanzaMisil 1",false,false) end ) addEventHandler("onClientGUIClick",root,function() if source == GUIEditor_Button[3] then guiSetVisible(GUIEditor_Window[1],false) showCursor(false) elseif source == GUIEditor_Button[1] then local xr,xc = guiGridListGetSelectedItem(GUIEditor_Grid[1]) local item = guiGridListGetItemText(GUIEditor_Grid[1],xr,xc) if item == 'LanzaMisil 1' then triggerServerEvent("CameraM1",getLocalPlayer()) guiSetVisible(GUIEditor_Window[2],true) guiSetVisible(GUIEditor_Window[1],false) addEventHandler("onClientClick",root,tirar) end elseif source == GUIEditor_Button[10] then setCameraTarget(getLocalPlayer()) guiSetVisible(GUIEditor_Window[1],true) guiSetVisible(GUIEditor_Window[2],false) elseif source == GUIEditor_Button[6] then triggerServerEvent("moveLeft",getLocalPlayer()) elseif source == GUIEditor_Button[7] then triggerServerEvent("moveUp",getLocalPlayer()) elseif source == GUIEditor_Button[8] then triggerServerEvent("moveRight",getLocalPlayer()) elseif source == GUIEditor_Button[9] then triggerServerEvent("moveDown",getLocalPlayer()) end end ) function tirar(worldX,worldY,worldZ) local cursorX,cursorY,cursorZ,worldX,worldY,worldZ = getCursorPosition() if not createProjectile(getLocalPlayer(),19,worldX,worldY,worldZ) then outputChatBox("el misil no se pudo crear",getLocalPlayer()) end end sv-side addEvent("CameraM1",true) addEventHandler("CameraM1",root,function() local camera = setCameraMatrix(source,189.95697021484, 2081.3354492188, 26,226.38482666016, 2045.6298828125, 32.410900115967) end ) addEvent("moveLeft",true) addEventHandler("moveLeft",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly+5,lz) end ) addEvent("moveUp",true) addEventHandler("moveUp",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly,lz+5) end ) addEvent("moveRight",true) addEventHandler("moveRight",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly-5,lz) end ) addEvent("moveDown",true) addEventHandler("moveDown",root,function() local x,y,z,lx,ly,lz = getCameraMatrix(source) setCameraMatrix(source,x,y,z,lx,ly,lz-5) end )
-
probe y no funciona, ahora probe con esto : addEventHandler( 'onClientGUIClick', GUIEditor_Grid[1], function( ) local nRow, nColumn = guiGridListGetSelectedItem( source ) if nRow == 0 and nColumn == 0 then triggerServerEvent(getLocalPlayer(),"CameraM1",getLocalPlayer()) end end ) pero sigue sin funcionar
-
mm Ok aunque no creo que sea el error, ya que antes me habia equivocado y lo habia puesto con el boton y si funcionaba ahora no funciona
-
porque cuando clickeo no me aparece el camera ? cl-side GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Grid = {} GUIEditor_Window[1] = guiCreateWindow(0,0.135,0.2575,0.6017,"Elige un Misil",true) guiWindowSetMovable(GUIEditor_Window[1],false) guiWindowSetSizable(GUIEditor_Window[1],false) GUIEditor_Grid[1] = guiCreateGridList(9,23,188,243,false,GUIEditor_Window[1]) guiGridListSetSelectionMode(GUIEditor_Grid[1],2) col = guiGridListAddColumn(GUIEditor_Grid[1],"Misiles",0.2) GUIEditor_Button[1] = guiCreateButton(9,271,188,38,"Elegir",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(9,312,188,38,"Cancelar",false,GUIEditor_Window[1]) GUIEditor_Window[2] = guiCreateWindow(0,0.135,0.1912,0.5217,"Opciones",true) GUIEditor_Button[4] = guiCreateButton(9,29,128,34,"Zoom +",false,GUIEditor_Window[2]) GUIEditor_Button[5] = guiCreateButton(9,70,128,34,"Zoom -",false,GUIEditor_Window[2]) GUIEditor_Button[6] = guiCreateButton(9,158,43,41,"<",false,GUIEditor_Window[2]) GUIEditor_Button[7] = guiCreateButton(49,121,43,41,"^",false,GUIEditor_Window[2]) GUIEditor_Button[8] = guiCreateButton(89,157,43,41,">",false,GUIEditor_Window[2]) GUIEditor_Button[9] = guiCreateButton(50,196,43,41,"v",false,GUIEditor_Window[2]) GUIEditor_Button[10] = guiCreateButton(9,264,133,34,"Cancelar",false,GUIEditor_Window[2]) guiSetVisible(GUIEditor_Window[1],false) guiSetVisible(GUIEditor_Window[2],false) showCursor(false) local marker = createMarker(213.9440612793, 1818.9245605469, 5.9,"cylinder",1,0,120,0,140) addEventHandler("onClientMarkerHit",root,function(hitPlayer, matchingDimension) if hitPlayer == getLocalPlayer() then if source == marker then guiSetVisible(GUIEditor_Window[1],true) showCursor(true) end end end ) addEventHandler("onClientResourceStart",resourceRoot,function() local row = guiGridListAddRow(GUIEditor_Grid[1]) guiGridListSetItemText(GUIEditor_Grid[1],row,col,"LanzaMisil 1",false,false) end ) addEventHandler("onClientClick",root,function() if source == GUIEditor_Grid[1] then local rx,cx = guiGridListGetSelectedItem(GUIEditor_Grid[1]) if guiGridListGetItemText(GUIEditor_Grid[1],rx,cx) == "LanzaMisil 1" then triggerServerEvent("CameraM1",getLocalPlayer()) end end end ) addEventHandler("onClientGUIClick",root,function() if source == GUIEditor_Button[3] then guiSetVisible(GUIEditor_Window[1],false) showCursor(false) elseif source == GUIEditor_Button[1] then guiSetVisible(GUIEditor_Window[2],true) guiSetVisible(GUIEditor_Window[1],false) elseif source == GUIEditor_Button[10] then setCameraTarget(getLocalPlayer()) guiSetVisible(GUIEditor_Window[1],true) guiSetVisible(GUIEditor_Window[2],false) end end ) sv-side addEvent("CameraM1",true) addEventHandler("CameraM1",root,function() setCameraMatrix(source,226.38482666016, 2045.6298828125, 32.410900115967,189.95697021484, 2081.3354492188, 22.640625) end )
-
busca en la comunidad amigo, y respecto a lo de los autos privados, aca no hacemos tus scripts solo te ayudamos a hacerlos.
-
Hola amigos tnego un problema urgente con los edits en el login panel : los edits no dejan escribir en ellos
-
Gracias Solid. OFFTOPIC : Solid ahora eres azul c:
-
como hacer para que en el chat aparescan admin tags ? algo asi : [ADMIN]ElMota ? o donde lo puedo descargar ?