Jump to content

Julian09123

Members
  • Posts

    411
  • Joined

  • Last visited

Everything posted by Julian09123

  1. Alexteel Y haci no? function joinTime ( ) local ping = getPlayerPing(source) if (setElementData ( source, "playerPing", ping)) then local tomarPing = getElementData(source, "playerPing") guiSetText (jugadorPing, Ping:"..tomarPing..") end end addEventHandler ( "onClientPlayerJoin", getRootElement(), joinTime )
  2. Te digo una cosa eso me paso ami man... Eso no tiene nada que ver con el Hosting eso tiene que ver con tu carpeta zombies/zombie_client Verifica si esta dañado tu archivo o no.Si no es eso ps no lo se.
  3. Fixeado solamente como le agrego para que Diga Admins online: y abajo los Level: tata level 2: tata ? function viewAdmin(source) local lv1 = {} local lv2 = {} local lv3 = {} local lv4 = {} for i,v in ipairs(getElementsByType("player")) do local accV = getPlayerAccount(v) local accName = getAccountName(accV) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 4" ) ) then table.insert(lv4, getPlayerName(v)) elseif isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 3" ) ) then table.insert(lv3, getPlayerName(v)) elseif isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 2" ) ) then table.insert(lv2, getPlayerName(v)) elseif isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 1" ) ) then table.insert(lv1, getPlayerName(v)) end end if #lv1 ~= 0 then outputChatBox("Level 1: "..table.concat(lv1, ", "), source, 0, 255, 0) else outputChatBox("Level 1: Ninguno", source, 0, 255, 0) end if #lv2 ~= 0 then outputChatBox("Level 2: "..table.concat(lv2, ", "), source, 0, 255, 0) else outputChatBox("Level 2: Ninguno", source, 0, 255, 0) end if #lv3 ~= 0 then outputChatBox("Level 3: "..table.concat(lv3, ", "), source, 0, 255, 0) else outputChatBox("Level 3: Ninguno", source, 0, 255, 0) end if #lv4 ~= 0 then outputChatBox("Level 4: "..table.concat(lv4, ", "), source, 0, 255, 0) else outputChatBox("Level 4: Ninguno", source, 0, 255, 0) end end addCommandHandler("admins", viewAdmin)
  4. Mira en el acl tengo Level 1 2 ,3 4 Y lo edite y no anda ahora function viewAdmin(source) local Lvl1 = {} local Lvl2 = {} local lvl3 = {} local lvl4 = {} for i,v in ipairs(getElementsByType("player")) do local accV = getPlayerAccount(v) local accName = getAccountName(accV) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 4" ) ) then table.insert(lv4, getPlayerName(v)) elseif isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 3" ) ) then table.insert(lv3, getPlayerName(v)) elseif isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 2" ) ) then table.insert(lv2, getPlayerName(v)) elseif isObjectInACLGroup ("user."..accName, aclGetGroup ( "Level 1" ) ) then table.insert(lv1, getPlayerName(v)) end end if #lv1 ~= 0 then outputChatBox("Level 1: "..table.concat(lv1, ", "), source, 0, 255, 0) else outputChatBox("Level 1: Ninguno", source, 0, 255, 0) end if #lv2 ~= 0 then outputChatBox("Level 2: "..table.concat(lv2, ", "), source, 0, 255, 0) else outputChatBox("Level 2: Ninguno", source, 0, 255, 0) end if #lv3 ~= 0 then outputChatBox("Level 3: "..table.concat(lv3, ", "), source, 0, 255, 0) else outputChatBox("Level 3: Ninguno", source, 0, 255, 0) end if #lv4 ~= 0 then outputChatBox("Level 4: "..table.concat(lv4, ", "), source, 0, 255, 0) else outputChatBox("Level 4: Ninguno", source, 0, 255, 0) end end addCommandHandler("admins", viewAdmin)
  5. Sasuke Lo que yo digo es que cuando pongo /admins Salgo yo pero Sale el Nombre solo Julian no sale Level 4: Julian solo sale asi level 1 : None level 2: none level : None y abajo Julian y quiero que salga como Level 4 :Julian, otros players
  6. Sasuke gracias anda pero yo estoy en adm osea pongo /admins y salgo yo pero no dice Level: Julian,Otros players como hago eso?
  7. Julian09123

    /admins

    Hola amigo, buen dia. Hoy me preguntaba como podria hacer cuando pongo /admins Te salga Level 1: Level2: claro si hay online Level 3 y level 4 Yo ya edite el ACL entonces quiero hacer eso.Porfavor ayudenme plz gracias
  8. ajaj Gracias Castillo tu si eres de ayuda
  9. me dice Error Parsiing Acess Control list File Ayudenme plz ACL:
  10. Bc me dirias como puedo hacerlo con Menus?
  11. entonces Castillo que recomiendas que haga?
  12. Si a ese tipo de multi gamemode Sabes como podria hacerlo?
  13. Hola amigos, quisiera saber si alguien me puede dar una idea o me puede ayudar a como hacer un Multi gamemode? Gracias
  14. Men Pon las coordenadas aqui spawnPlayer(source, joinX, joinY, joinZ, 0 , joinSkin)
  15. renk el tuyo me funciono pero cada vez q ponia /zonaafk hay me decia el texto y no lo quiero haci quiero q todos lo lean sin escribir un comando ah alvarez y el tuyo me dice bad argument ouputChatBox
  16. Nod Haci no me anda function teleport(source) setElementPosition(source, -2522.9711914063, -637.05572509766, 147.90631103516) function Chat () outputChatBox ( "Aqui el texto", getRootElement(), 255, 0, 0, true) -- Solo va true si usas colores HTML. end setTimer(Chat, 50000,1) end addCommandHandler("zonaafk", teleport)
  17. Muchas gracias Sasuke Eres el mejor Y para agregarle Un Mensage cada 5 minutos seria haci? function teleport(source) setElementPosition(source, x, y, z) outputChatBox ( "Aqui el texto", getRootElement(), 255, 0, 0, true ) setTimer ( function() end, 5000, 1 ) end addCommandHandler("zona", teleport)
  18. Hola, amigos Quisiera saber como podria hacer para que cuando escriba el jugador un comando por ejemplo /zona Te teletransporte a un lugar.?
  19. Ok dale mirare Gracias por todo
  20. Hay esta Zorro Hay vi Y como seria para ponerlo mas arriba? Porque no entiendo mucho de posiciones de eso?
  21. Lo qe pasa es qe no aparece el texto osea entro al agua y nada me saca vida pero no aparece la advertencia
  22. Zorro Como podria hacer para que le aparesca al jugador un cartel que diga Sal Del agua O moriras! OuputChatBox No quiero porque sale en el chat quiero en la pantalla
  23. Hola amigos, Quisiera saber como hacer para que cuando un jugador toque el agua le saque vida de apoco hasta que muera Me ayudarian?
×
×
  • Create New...