elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Rompecabezas de Bitcoin, Medio millón USD en premios


  Mostrar Mensajes
Páginas: 1 ... 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 [90] 91 92 93 94 95 96 97 98
891  Media / Juegos y Consolas / Re: Sobre Counter Strike en: 4 Agosto 2010, 07:52 am
Ah ok no habia respondido, gracias  ya me lo descargue y estoy mas entretenido que nada ya lo llevo lejos...
pero escuche algo sobre otra version de este tipo pero no era el CZ, segun era mas nueva, saben algo?
892  Media / Juegos y Consolas / Re: Sobre Counter Strike en: 1 Agosto 2010, 09:14 am
jajajaj pues si pero soy una papa pa jugarlo contra los demas...
893  Media / Juegos y Consolas / Sobre Counter Strike en: 1 Agosto 2010, 06:16 am
Hola pos disculpen por la ignorancia: quisiera saber si hay alguna version de Counter Strike donde no necesariamente tiene que ser multiplayer, ni usando bots, me refiero a misiones programadas y esas cosas... cual es?... muchas gracias
894  Comunicaciones / Mensajería / Re: Informacion de Contactos [Ayuda] en: 30 Julio 2010, 19:23 pm
OK gracias man! y que hay sobre lo "otro", se podra?
895  Programación / Ingeniería Inversa / Re: [Crackme] Crackme #1 en: 30 Julio 2010, 06:50 am
mmmm interesante... :¬¬

Citar
The file 'C:\Documents and Settings\BillGates\Mis documentos\Descargas\Crackme #1.exe'
contained a virus or unwanted program 'TR/Crypt.ZPACK.Gen' [trojan]
Action(s) taken:
The file was moved to the quarantine directory under the name '4eecf897.qua'.
896  Comunicaciones / Mensajería / Re: Ayuda con IP y MSN en: 30 Julio 2010, 04:57 am
Te recomiendo que apliques conocimientos y tecnicas de la estrella de la informatica (Redoble de tambores): La ingenieria social....   :D
897  Comunicaciones / Mensajería / Informacion de Contactos [Ayuda] en: 30 Julio 2010, 01:57 am
Hola que tal, tengo un par de dudas que no alcanzo de aclararme, ya andube buscando pero nada de nada; y pos venia haber si ustedes sabian algo y pudieran ayudarme...

bueno se trata de saber informacion de algun contacto agregado en Hotmail o WinLive, es decir me gustaria saber "en que fecha" agregue o me agrego esa persona, o cuando fue nuestro primer chat....

Y la otra es si pudiera saber cuando me hice mi cuenta de hotmail...

Bueno espero y me ayuden... ahi se ven...
898  Programación / Programación Visual Basic / Re: [Ayuda] TileMap (Parallax Scrolling) en: 27 Julio 2010, 04:24 am
Código
  1.  Dim Ox As Integer
  2. Dim oY As Integer
  3. Dim sizMap As Integer
  4.  
  5. Private Sub Form_Load()
  6.    pic(0).Visible = False
  7.    pic(1).Visible = False
  8.    pic(2).Visible = False
  9.    picture2.Visible = False
  10.    pic(0).ScaleMode = 3
  11.    pic(1).ScaleMode = 3
  12.    pic(2).ScaleMode = 3
  13.    picture2.ScaleMode = 3
  14.    pic(0).BorderStyle = 0
  15.    pic(1).BorderStyle = 0
  16.    pic(2).BorderStyle = 0
  17.    picture2.BorderStyle = 0
  18.    pic(0).AutoSize = True
  19.    pic(1).AutoSize = True
  20.    pic(2).AutoSize = True
  21.    picture2.AutoSize = True
  22.    Me.ScaleMode = 3
  23.    Me.AutoRedraw = True
  24.  
  25.    Ox = 0
  26.    oY = 0
  27.    sizMap = 15
  28.    Call DibujarMapa
  29. End Sub
  30.  
  31. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
  32.    If KeyCode = 37 And Ox > 0 Then Ox = Ox - 1
  33.    If KeyCode = 38 And oY > 0 Then oY = oY - 1
  34.    If KeyCode = 39 And Ox < picture2.Width - sizMap Then Ox = Ox + 1
  35.    If KeyCode = 40 And oY < picture2.Height - sizMap Then oY = oY + 1
  36.    Call DibujarMapa
  37. End Sub
  38. Public Sub DibujarMapa()
  39. Me.Cls
  40. For y = 0 To sizMap
  41. For x = 0 To sizMap
  42.  
  43. z = picture2.Point(Ox + x, oY + y)
  44. Debug.Print z
  45.  
  46. Select Case z
  47.  
  48.  
  49.    Case RGB(0, 0, 255)
  50.  
  51.        EsAgua x * 32, y * 32
  52.  
  53.  
  54.    Case RGB(128, 128, 128)
  55.  
  56.        EsCamino x * 32, y * 32
  57.  
  58.  
  59.    Case RGB(0, 255, 0)
  60.  
  61.        EsLlegada x * 32, y * 32
  62.  
  63. End Select
  64.  
  65. Next x
  66. Next y
  67.  
  68. End Sub
  69. Sub EsAgua(x, y)
  70. Me.PaintPicture pic(0), x, y, 32, 32
  71. End Sub
  72. Sub EsLlegada(x, y)
  73.    Me.PaintPicture pic(1), x, y, 32, 32
  74. End Sub
  75. Sub EsCamino(x, y)
  76.    Me.PaintPicture pic(2), x, y, 32, 32
  77. End Sub
  78.  

Sin Apis...
899  Programación / Programación Visual Basic / Re: [Ayuda] TileMap (Parallax Scrolling) en: 27 Julio 2010, 02:20 am
Y si utilizaras 2 variables auxiliares, para el origen, "Ox" y "Oy", que seria el lugar apartir de donde se comenzaria a leer el "picture2"?

Código
  1. Private sub Form_Load()
  2. Ox=0
  3. Oy=0
  4. end sub
  5.  
  6. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
  7.        if keycode=37 and Ox>0 then Ox=Ox-1
  8.        if keycode=38 and Oy>0 then Oy=Oy-1
  9.        if keycode=39 and Ox<picture2.width then Ox=Ox+1
  10.        if keycode=40 and Oy<picture2.height then Oy=Oy+1
  11. End Sub
  12.  
  13.  

Código
  1.  
  2. For y = 0 To 15
  3. For x = 0 To 15
  4.  
  5. z = GetPixel(Form1.Picture2.hdc,Ox + x, Oy + y)
  6. Debug.Print z
  7.  
  8. Select Case z
  9.  
  10.  
  11.    Case RGB(0, 0, 255)
  12.  
  13.        EsAgua x * 32, y * 32
  14.  
  15.  
  16.    Case RGB(128, 128, 128)
  17.  
  18.        EsCamino x * 32, y * 32
  19.  
  20.  
  21.    Case RGB(0, 255, 0)
  22.  
  23.        EsLlegada x * 32, y * 32
  24.  
  25. End Select
  26.  
  27. Next x
  28. Next y
  29.  
  30.  
900  Foros Generales / Foro Libre / Re: Si mañana fuera el fin del mundo, yo, todavía hoy plantaría un árbol. en: 25 Julio 2010, 06:51 am
Pos yo creo que para ateos y no ateos, el fin del mundo es sencillamente "la muerte"...

Y la metafora, pienso yo, de "plantar un arbol" no tiene que referirse forzosamente a "ayudar a los demas", si no a siempre tener esperanzas, nunca rendirse, digamos que alguien esta enfermo del corazon, y mañana morira de cancer(y esa persona es conciente), y aun asi se toma los medicamentos para el corazon...
Páginas: 1 ... 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 [90] 91 92 93 94 95 96 97 98
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines