iFoReX Posted March 2, 2012 Share Posted March 2, 2012 como hacer para que el boton sierre la ventana ? es que soy nuevo en eso de que se sierre la ventana addEventHandler("onClientResourceStart",resourceRoot, function() GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(171,63,513,522,"Best Killer Of Zombies Clan",false) GUIEditor_Image[1] = guiCreateStaticImage(0.0214,0.0881,0.9513,0.1341,"images/shruk.png",true,GUIEditor_Window[1]) GUIEditor_Memo[1] = guiCreateMemo(0.0273,0.2893,0.9571,0.59,"mmm... Bueno esto es lo mas importante ..\n\n1. Reglas :\n\n .- No usar cheats ni bugs ( Razon de Bann o kick )\n .- No Abusar de admin ( Solo para admins )\n .- No Pedir por admin ya que el admin se gana no se pide\n .- No Pedir ser del clan ya que por lo menos ai q tener 700 kills para entrar al clan...\n2. Informacion :\n\n .- Bueeno cualquier Duda Consultenmelo a mi ElMota\n .- Si tienes un clan y quieres aserle un spawn solo pidemelo a mi pero por lo menos deben aver 2 miembros Activos\n\n3. Miembros del clan BKZ| :\n\n .-ElMota\n .-Roro\n .-Fernanda\n .-Wazon\n .-Dani\n .-D4niel\n .-Dash\n .-Gabi\n .-Cony\n .-Mati\n .-Vish0ow",true,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Button[1] = guiCreateButton(0.6745,0.9023,0.2982,0.0747,"Cerrar",true,GUIEditor_Window[1]) end ) ai el code es que quiero q cuando entren les aparesca y la sierren con el boton Link to comment
12p Posted March 2, 2012 Share Posted March 2, 2012 addEventHandler ==> onClientGUIClick ==> variable del boton ==> guiSetVisible ==> variable de la ventana FALSE Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 lo probe y no me funciono osea me refiero a que no se si lo ise bien pero te dejo el codigo addEventHandler("onClientResourceStart",resourceRoot, function() GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(171,63,513,522,"Best Killer Of Zombies Clan",false) GUIEditor_Image[1] = guiCreateStaticImage(0.0214,0.0881,0.9513,0.1341,"shruk.png",true,GUIEditor_Window[1]) GUIEditor_Memo[1] = guiCreateMemo(0.0273,0.2893,0.9571,0.59,"mmm... Bueno esto es lo mas importante ..\n\n1. Reglas :\n\n .- No usar cheats ni bugs ( Razon de Bann o kick )\n .- No Abusar de admin ( Solo para admins )\n .- No Pedir por admin ya que el admin se gana no se pide\n .- No Pedir ser del clan ya que por lo menos ai q tener 700 kills para entrar al clan...\n2. Informacion :\n\n .- Bueeno cualquier Duda Consultenmelo a mi ElMota\n .- Si tienes un clan y quieres aserle un spawn solo pidemelo a mi pero por lo menos deben aver 2 miembros Activos\n\n3. Miembros del clan BKZ| :\n\n .-ElMota\n .-Roro\n .-Fernanda\n .-Wazon\n .-Dani\n .-D4niel\n .-Dash\n .-Gabi\n .-Cony\n .-Mati\n .-Vish0ow",true,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Button[1] = guiCreateButton(0.6745,0.9023,0.2982,0.0747,"Cerrar",true,GUIEditor_Window[1]) end ) showCursor(true) addEventHandler("onClientGUIClick", GUIEditor_Button[1], guiSetVisible, GUIEditor_Window[1], false) gracias de antemano Link to comment
Castillo Posted March 2, 2012 Share Posted March 2, 2012 addEventHandler("onClientResourceStart",resourceRoot, function () GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(171,63,513,522,"Best Killer Of Zombies Clan",false) GUIEditor_Image[1] = guiCreateStaticImage(0.0214,0.0881,0.9513,0.1341,"shruk.png",true,GUIEditor_Window[1]) GUIEditor_Memo[1] = guiCreateMemo(0.0273,0.2893,0.9571,0.59,"mmm... Bueno esto es lo mas importante ..\n\n1. Reglas :\n\n .- No usar cheats ni bugs ( Razon de Bann o kick )\n .- No Abusar de admin ( Solo para admins )\n .- No Pedir por admin ya que el admin se gana no se pide\n .- No Pedir ser del clan ya que por lo menos ai q tener 700 kills para entrar al clan...\n2. Informacion :\n\n .- Bueeno cualquier Duda Consultenmelo a mi ElMota\n .- Si tienes un clan y quieres aserle un spawn solo pidemelo a mi pero por lo menos deben aver 2 miembros Activos\n\n3. Miembros del clan BKZ| :\n\n .-ElMota\n .-Roro\n .-Fernanda\n .-Wazon\n .-Dani\n .-D4niel\n .-Dash\n .-Gabi\n .-Cony\n .-Mati\n .-Vish0ow",true,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Button[1] = guiCreateButton(0.6745,0.9023,0.2982,0.0747,"Cerrar",true,GUIEditor_Window[1]) addEventHandler("onClientGUIClick", GUIEditor_Button[1], function () guiSetVisible(GUIEditor_Window[1], false) showCursor(false) end,false) showCursor(true) end ) El problema principal era que el boton estaba dentro del evento, y el evento tambien tenia que estar dentro. Link to comment
Kenix Posted March 2, 2012 Share Posted March 2, 2012 addEventHandler("onClientGUIClick", GUIEditor_Button[1], guiSetVisible, GUIEditor_Window[1], false) Mal. Los argumentos de 3 a 5 incorrecta. Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 oka es que me falta aprender todavia pero dicen que de los errores se aprende Link to comment
Castillo Posted March 2, 2012 Share Posted March 2, 2012 ElMota: Copia mi codigo de nuevo, ahi funciona, me parecia que no se podia usar simplemente la funcion para ocultar un GUI. Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 pero me podrias decir que escribi mal ? Edit: man el ultimo problema ^^ es que cuando inicio el resource ( /start GUI3 ) pasa que no me aparece el cursor . pero aprieto T para que salga el cursor y cuando la sierro aparece el cursor Link to comment
Castillo Posted March 2, 2012 Share Posted March 2, 2012 Es verdad, puse que cuando presiones el boton aparezca el cursor , copia el codigo de nuevo, ahora deberia mostrarlo al crear la GUI y al presionar el boton ocultarlo. Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 Funciona al 100% man gracias sos re PRO ahora que estamos ablando de GUIs y todo eso les queria aser una consulta an visto el server de yakusa ? en el server de yakusa ai text 3d que cambian por tiempo creo y pues yo qeria aser el mio pero no se como y ya ise mi texto 3d addEventHandler("onClientResourceStart",resourceRoot, function() end ) -- Direct X Drawing addEventHandler("onClientRender",root, function() dxDrawText("Zombie Invasion Chile",547.0,537.0,738.0,600.0,tocolor(255,255,255,255),2.0,"default","left","top",false,false,false) end ) a y gracias a los que me ayudaron (Y) son re buena gente Link to comment
Castillo Posted March 2, 2012 Share Posted March 2, 2012 Busca un recurso que se llama "3dt" o algo asi en la comunidad. Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 se llama easy 3d text ? eso fue lo unico q me aparecio Link to comment
Castillo Posted March 2, 2012 Share Posted March 2, 2012 Si, con ese recurso deberias poder crear textos en 3D. Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 No logro saber Como usarlo "ranch" posX="-711" posY="957" posZ="12.4" text="Ranch Text"> "pirate" posX="2005" posY="1543" posZ="13.5" text="Arr! Pirate Text"> "grove" posX="2485" posY="-1667" posZ="13.3" text="CJ's Text"> "hill" posX="-2405" posY="-598" posZ="132.6" text="Chilliad Text"> que ago ai ? Link to comment
12p Posted March 2, 2012 Share Posted March 2, 2012 Porque no lees el archivo readme.txt que viene con el resource? ahi tienes todas las instrucciones... Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 mmm... pero no se puede en todo el mapa ? Link to comment
12p Posted March 2, 2012 Share Posted March 2, 2012 ...No se si debo usar facepalm o ser bondadoso y explicartelo... Sere bondadoso esta vez. Ya has notado que estan estas lineas de XML que son asi: "ranch" posX="-711" posY="957" posZ="12.4" text="Ranch Text"> eso se llama NODO XML. Puedes poner cuantos nodos se te antoje. los textitos que aparecen a los lados (id="ranch"), son ATRIBUTOS DEL NODO. Puedes poner cuantos atributos quieras, tambien. "id" es un texto necesario para identificar al elemento de texto 3d que quieres poner en el server. Algo asi como una variable asignada a una GUI Label (no se como explicartelo de otra manera). sin embargo no te sirve de nada si no vas a manipular los textos con scripts aparte. "posX" es la posicion del texto en el eje X, posY es para el eje Y, y ya sabes que pasa con posZ. "text" es el contenido del texto, el mensaje. Lo que debes hacer es simplemente cambiar los atributos posX, posY, y posZ, a la posicion donde quieres que este tu texto, y el "text" cambiarlo al mensaje que debe tener el texto. tambien deberias cambiar el "id" por si quieres manipular los textos por medio de scripts (si tuvieses 2 textos con el mismo id habrian ciertos conflictos). Si quieres mas textos, solo crea mas nodos xml. Alguna vez has abierto un archivo ".map"? Esos son los mapas del mta, si los abres notaras que tambien usan nodos xml. Puedes hacerte una idea a partir de ahi. A proposito, BAJASTE "easy3dtext", CIERTO? Me parece raro que saliera "spawnpoint" en el archivo de textos xml. Link to comment
iFoReX Posted March 2, 2012 Author Share Posted March 2, 2012 no entiendo mucho ingles Link to comment
Castillo Posted March 2, 2012 Share Posted March 2, 2012 El te lo explico en español . Podes crear cuantos textos quieras, ejemplo: "ranch" posX="-711" posY="957" posZ="12.4" text="Ranch Text"> "ranch 2" posX="-711" posY="957" posZ="12.4" text="Ranch Text 2"> "ranch 3" posX="-711" posY="957" posZ="12.4" text="Ranch Text 3"> "ranch 4" posX="-711" posY="957" posZ="12.4" text="Ranch Text 4"> Link to comment
iFoReX Posted March 3, 2012 Author Share Posted March 3, 2012 oks are 1 en mi spawn mencionando cuidado con los zombies solo para probarlos gracias por tu ayuda solid y tambien a ti benxamin2 Link to comment
iFoReX Posted March 3, 2012 Author Share Posted March 3, 2012 buee... tema solucionado la ultima cosita e visto en algunos server que se puede ver en tab el tiempo jugado en el server ese esta en la comunidad o se ase ? Link to comment
iFoReX Posted March 12, 2012 Author Share Posted March 12, 2012 me ayudarian con esto ? quiero que la GUIEditor_Window[2] aparesca al aprietar el button[3] osea miembros buee ai ta el codigo gracias de antemano GUIEditor_Window = {} GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Label = {} GUIEditor_Radio = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(158,128,486,425,"Panel de Ayuda",false) GUIEditor_Radio[1] = guiCreateRadioButton(14,115,85,42,"Comandos",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[1],"clear-normal") GUIEditor_Image[1] = guiCreateStaticImage(29,18,419,89,"images/logobkz.png",false,GUIEditor_Window[1]) GUIEditor_Radio[2] = guiCreateRadioButton(14,148,96,42,"Informacion",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[2],"clear-normal") GUIEditor_Memo[1] = guiCreateMemo(152,110,324,241,"Comandos :\n\n F1 : Gui Canciones / Music GUI\n F2 : Panel de Ayuda\n F3 : Panel de Spawn de vehiculos Comprados\n F4 : Shader Panel / Panel para texturas reales",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Radio[3] = guiCreateRadioButton(14,178,96,42,"Sobre",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[3],"clear-normal") GUIEditor_Radio[4] = guiCreateRadioButton(14,211,96,42,"Clan",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[4],"clear-normal") GUIEditor_Button[1] = guiCreateButton(348,366,124,40,"Cerrar",false,GUIEditor_Window[1]) GUIEditor_Memo[2] = guiCreateMemo(152,110,324,241,"Informacion Sobre el server :\n\nBuee yo ago casi todos los scripts ( ElMota ) uno que otro descargado. Aveces me ayudan con las functions en el foro del MTA",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[2],true) GUIEditor_Memo[3] = guiCreateMemo(152,110,324,241,"Sobre el server y la GUI :\n\nServer y GUI creada por ElMota ayudado con algunas Functions \n\n-----------------------------------------------------------------------------CopyRight 2012 (c)",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[3],true) GUIEditor_Memo[4] = guiCreateMemo(152,110,324,241,"Bueeno el clan del server es BKZ| Best Killer of Zombies Clan\n\nPara entrar minimo ai que tener 200 zombies kills y estar loggeado y registrado",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[4],true) GUIEditor_Image[2] = guiCreateStaticImage(18,367,59,30,"images/BAT.png",false,GUIEditor_Window[1]) GUIEditor_Image[3] = guiCreateStaticImage(88,367,75,29,"images/shruk.png",false,GUIEditor_Window[1]) GUIEditor_Radio[5] = guiCreateRadioButton(14,115,85,42,"Commands",false,GUIEditor_Window[1]) guiRadioButtonSetSelected(GUIEditor_Radio[5],true) guiSetFont(GUIEditor_Radio[5],"clear-normal") GUIEditor_Radio[6] = guiCreateRadioButton(14,148,96,42,"Information",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[6],"clear-normal") GUIEditor_Radio[7] = guiCreateRadioButton(14,178,96,42,"About",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[7],"clear-normal") GUIEditor_Radio[8] = guiCreateRadioButton(14,211,96,42,"Clan",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[8],"clear-normal") GUIEditor_Memo[5] = guiCreateMemo(152,110,324,241,"Sorry for my bad english :\n\nF1 : Music GUI\nF2 : Animations\nF3 : Car Panel\nF4 : Shader Panel\nF5 : Help Panel.",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[5],true) GUIEditor_Memo[6] = guiCreateMemo(152,110,324,241,"This is my server and my Scripts by ( ElMota )\n\nSpam = Mute or Kick\nCheats or Hacks = Kick or Bann( 1 Year )\nBugs = Kick or Bann\n-",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[6],true) GUIEditor_Memo[7] = guiCreateMemo(152,110,324,241,"This scripts and this server have CopyRight 2012 (c)\n\nAnd the official Creator of this server is me ( ElMota )",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[7],true) GUIEditor_Memo[8] = guiCreateMemo(152,110,324,241,"The official Clan of this server is BKZ| Best Killer of Zombies Clan and is my clan , if u want be BKZ| u need 600 kills and be registered",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[8],true) GUIEditor_Button[2] = guiCreateButton(348,366,124,40,"Close",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(246,367,94,38,"Miembros",false,GUIEditor_Window[1]) GUIEditor_Window[2] = guiCreateWindow(196,85,432,479,"Miembros del Clan",false) GUIEditor_Label[1] = guiCreateLabel(36,79,5,5,"",false,GUIEditor_Window[2]) GUIEditor_TabPanel[1] = guiCreateTabPanel(9,88,414,328,false,GUIEditor_Window[2]) GUIEditor_Tab[1] = guiCreateTab("Rangos Altos",GUIEditor_TabPanel[1]) GUIEditor_Label[2] = guiCreateLabel(9,29,105,25,"BKZ|ElMota",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Label[2],"clear-normal") GUIEditor_Label[3] = guiCreateLabel(114,15,255,44,"Informacion del Jugador",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Label[3],"sa-header") GUIEditor_Label[4] = guiCreateLabel(118,65,174,27,"Nombre Real : Krlos Vaskez",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[4],200, 0, 10) GUIEditor_Label[5] = guiCreateLabel(8,58,105,25,"BKZ|Roro",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Label[5],"clear-normal") GUIEditor_Label[6] = guiCreateLabel(118,94,174,27,"Edad : 14 años",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[6],200,0,10) GUIEditor_Label[7] = guiCreateLabel(118,120,174,27,"Rango : Fundador Del Clan",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[7],200,0,10) GUIEditor_Label[8] = guiCreateLabel(118,65,174,27,"Nombre Real : Rodrigo Soto",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[8],200,0,10) GUIEditor_Label[9] = guiCreateLabel(118,94,174,27,"Edad : 10 años",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[9],200,0,10) GUIEditor_Label[10] = guiCreateLabel(118,120,174,27,"Rango : SemiFundador Del Clan",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[10],200,0,10) GUIEditor_Tab[2] = guiCreateTab("Rangos Bajos",GUIEditor_TabPanel[1]) GUIEditor_Button[4] = guiCreateButton(321,424,100,43,"Cerrar",false,GUIEditor_Window[2]) GUIEditor_Button[3] = guiCreateButton(19,265,126,23,"Ver Skins Modificados",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(19,297,126,23,"Show Skins defaults",false,GUIEditor_Window[1]) GUIEditor_Button[6] = guiCreateButton(19,297,126,23,"Ver Skins por Defecto",false,GUIEditor_Window[1]) GUIEditor_Button[5] = guiCreateButton(9,265,138,23,"Show Skins Modifications",false,GUIEditor_Window[1]) Link to comment
Castillo Posted March 12, 2012 Share Posted March 12, 2012 addEventHandler ( "onClientResourceStart", resourceRoot, function ( ) GUIEditor_Window = {} GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Label = {} GUIEditor_Radio = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(158,128,486,425,"Panel de Ayuda",false) GUIEditor_Radio[1] = guiCreateRadioButton(14,115,85,42,"Comandos",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[1],"clear-normal") GUIEditor_Image[1] = guiCreateStaticImage(29,18,419,89,"images/logobkz.png",false,GUIEditor_Window[1]) GUIEditor_Radio[2] = guiCreateRadioButton(14,148,96,42,"Informacion",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[2],"clear-normal") GUIEditor_Memo[1] = guiCreateMemo(152,110,324,241,"Comandos :\n\n F1 : Gui Canciones / Music GUI\n F2 : Panel de Ayuda\n F3 : Panel de Spawn de vehiculos Comprados\n F4 : Shader Panel / Panel para texturas reales",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[1],true) GUIEditor_Radio[3] = guiCreateRadioButton(14,178,96,42,"Sobre",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[3],"clear-normal") GUIEditor_Radio[4] = guiCreateRadioButton(14,211,96,42,"Clan",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[4],"clear-normal") GUIEditor_Button[1] = guiCreateButton(348,366,124,40,"Cerrar",false,GUIEditor_Window[1]) GUIEditor_Memo[2] = guiCreateMemo(152,110,324,241,"Informacion Sobre el server :\n\nBuee yo ago casi todos los scripts ( ElMota ) uno que otro descargado. Aveces me ayudan con las functions en el foro del MTA",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[2],true) GUIEditor_Memo[3] = guiCreateMemo(152,110,324,241,"Sobre el server y la GUI :\n\nServer y GUI creada por ElMota ayudado con algunas Functions \n\n-----------------------------------------------------------------------------CopyRight 2012 (c)",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[3],true) GUIEditor_Memo[4] = guiCreateMemo(152,110,324,241,"Bueeno el clan del server es BKZ| Best Killer of Zombies Clan\n\nPara entrar minimo ai que tener 200 zombies kills y estar loggeado y registrado",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[4],true) GUIEditor_Image[2] = guiCreateStaticImage(18,367,59,30,"images/BAT.png",false,GUIEditor_Window[1]) GUIEditor_Image[3] = guiCreateStaticImage(88,367,75,29,"images/shruk.png",false,GUIEditor_Window[1]) GUIEditor_Radio[5] = guiCreateRadioButton(14,115,85,42,"Commands",false,GUIEditor_Window[1]) guiRadioButtonSetSelected(GUIEditor_Radio[5],true) guiSetFont(GUIEditor_Radio[5],"clear-normal") GUIEditor_Radio[6] = guiCreateRadioButton(14,148,96,42,"Information",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[6],"clear-normal") GUIEditor_Radio[7] = guiCreateRadioButton(14,178,96,42,"About",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[7],"clear-normal") GUIEditor_Radio[8] = guiCreateRadioButton(14,211,96,42,"Clan",false,GUIEditor_Window[1]) guiSetFont(GUIEditor_Radio[8],"clear-normal") GUIEditor_Memo[5] = guiCreateMemo(152,110,324,241,"Sorry for my bad english :\n\nF1 : Music GUI\nF2 : Animations\nF3 : Car Panel\nF4 : Shader Panel\nF5 : Help Panel.",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[5],true) GUIEditor_Memo[6] = guiCreateMemo(152,110,324,241,"This is my server and my Scripts by ( ElMota )\n\nSpam = Mute or Kick\nCheats or Hacks = Kick or Bann( 1 Year )\nBugs = Kick or Bann\n-",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[6],true) GUIEditor_Memo[7] = guiCreateMemo(152,110,324,241,"This scripts and this server have CopyRight 2012 (c)\n\nAnd the official Creator of this server is me ( ElMota )",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[7],true) GUIEditor_Memo[8] = guiCreateMemo(152,110,324,241,"The official Clan of this server is BKZ| Best Killer of Zombies Clan and is my clan , if u want be BKZ| u need 600 kills and be registered",false,GUIEditor_Window[1]) guiMemoSetReadOnly(GUIEditor_Memo[8],true) GUIEditor_Button[2] = guiCreateButton(348,366,124,40,"Close",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(246,367,94,38,"Miembros",false,GUIEditor_Window[1]) addEventHandler ( "onClientGUIClick", GUIEditor_Button[3], abrirVentanaDeMiembros, false ) GUIEditor_Window[2] = guiCreateWindow(196,85,432,479,"Miembros del Clan",false) GUIEditor_Label[1] = guiCreateLabel(36,79,5,5,"",false,GUIEditor_Window[2]) GUIEditor_TabPanel[1] = guiCreateTabPanel(9,88,414,328,false,GUIEditor_Window[2]) GUIEditor_Tab[1] = guiCreateTab("Rangos Altos",GUIEditor_TabPanel[1]) GUIEditor_Label[2] = guiCreateLabel(9,29,105,25,"BKZ|ElMota",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Label[2],"clear-normal") GUIEditor_Label[3] = guiCreateLabel(114,15,255,44,"Informacion del Jugador",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Label[3],"sa-header") GUIEditor_Label[4] = guiCreateLabel(118,65,174,27,"Nombre Real : Krlos Vaskez",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[4],200, 0, 10) GUIEditor_Label[5] = guiCreateLabel(8,58,105,25,"BKZ|Roro",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Label[5],"clear-normal") GUIEditor_Label[6] = guiCreateLabel(118,94,174,27,"Edad : 14 años",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[6],200,0,10) GUIEditor_Label[7] = guiCreateLabel(118,120,174,27,"Rango : Fundador Del Clan",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[7],200,0,10) GUIEditor_Label[8] = guiCreateLabel(118,65,174,27,"Nombre Real : Rodrigo Soto",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[8],200,0,10) GUIEditor_Label[9] = guiCreateLabel(118,94,174,27,"Edad : 10 años",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[9],200,0,10) GUIEditor_Label[10] = guiCreateLabel(118,120,174,27,"Rango : SemiFundador Del Clan",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[10],200,0,10) GUIEditor_Tab[2] = guiCreateTab("Rangos Bajos",GUIEditor_TabPanel[1]) GUIEditor_Button[4] = guiCreateButton(321,424,100,43,"Cerrar",false,GUIEditor_Window[2]) GUIEditor_Button[3] = guiCreateButton(19,265,126,23,"Ver Skins Modificados",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(19,297,126,23,"Show Skins defaults",false,GUIEditor_Window[1]) GUIEditor_Button[6] = guiCreateButton(19,297,126,23,"Ver Skins por Defecto",false,GUIEditor_Window[1]) GUIEditor_Button[5] = guiCreateButton(9,265,138,23,"Show Skins Modifications",false,GUIEditor_Window[1]) end ) function abrirVentanaDeMiembros ( ) guiSetVisible ( GUIEditor_Window[2], true ) end Link to comment
iFoReX Posted March 12, 2012 Author Share Posted March 12, 2012 es que quiero que al iniciar el resource osea cuando personas entren aparesca solo el window 1 y el otro aparesca solo aprietando el Button[3] me podrias ayudar ? Link to comment
Castillo Posted March 12, 2012 Share Posted March 12, 2012 Usa guiSetVisible para ocultar la segunda ventana. Link to comment
Recommended Posts