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

 

 


Tema destacado: Guía rápida para descarga de herramientas gratuitas de seguridad y desinfección


  Mostrar Temas
Páginas: 1 [2] 3
11  Programación / PHP / guardar pagina entera como PDF (problema) en: 22 Abril 2010, 17:38 pm
estoy usando HTML2PDF para hacerlo. Lo guarda bien, pero tengo dos cuestiones:
1. Lo guarda con el codigo abajo
Código:
AddPage(); $fp = fopen("libro.php","r"); $strContent = fread($fp, filesize("libro.php")); fclose($fp);
$pdf->WriteHTML($strContent); $pdf->Output("sample.pdf"); echo "PDF file is generated successfully!"; } ?>
2. Quiero generar un descargable dentro de la pagina
12  Programación / PHP / Problema con funcion convierte numero en letra en: 22 Abril 2010, 15:51 pm
este es el code
Código:
<?php 
function num2letras($num, $fem = true, $dec = true) {
   $matuni[2]  = "dos";
   $matuni[3]  = "tres";
   $matuni[4]  = "cuatro";
   $matuni[5]  = "cinco";
   $matuni[6]  = "seis";
   $matuni[7]  = "siete";
   $matuni[8]  = "ocho";
   $matuni[9]  = "nueve";
   $matuni[10] = "diez";
   $matuni[11] = "once";
   $matuni[12] = "doce";
   $matuni[13] = "trece";
   $matuni[14] = "catorce";
   $matuni[15] = "quince";
   $matuni[16] = "dieciseis";
   $matuni[17] = "diecisiete";
   $matuni[18] = "dieciocho";
   $matuni[19] = "diecinueve";
   $matuni[20] = "veinte";
   $matunisub[2] = "dos";
   $matunisub[3] = "tres";
   $matunisub[4] = "cuatro";
   $matunisub[5] = "quin";
   $matunisub[6] = "seis";
   $matunisub[7] = "sete";
   $matunisub[8] = "ocho";
   $matunisub[9] = "nove";

   $matdec[2] = "veint";
   $matdec[3] = "treinta";
   $matdec[4] = "cuarenta";
   $matdec[5] = "cincuenta";
   $matdec[6] = "sesenta";
   $matdec[7] = "setenta";
   $matdec[8] = "ochenta";
   $matdec[9] = "noventa";
   $matsub[3]  = 'mill';
   $matsub[5]  = 'bill';
   $matsub[7]  = 'mill';
   $matsub[9]  = 'trill';
   $matsub[11] = 'mill';
   $matsub[13] = 'bill';
   $matsub[15] = 'mill';
   $matmil[4]  = 'millones';
   $matmil[6]  = 'billones';
   $matmil[7]  = 'de billones';
   $matmil[8]  = 'millones de billones';
   $matmil[10] = 'trillones';
   $matmil[11] = 'de trillones';
   $matmil[12] = 'millones de trillones';
   $matmil[13] = 'de trillones';
   $matmil[14] = 'billones de trillones';
   $matmil[15] = 'de billones de trillones';
   $matmil[16] = 'millones de billones de trillones';

   $num = trim((string)@$num);
   if ($num[0] == '-') {
      $neg = 'menos ';
      $num = substr($num, 1);
   }else
      $neg = '';
   while ($num[0] == '0') $num = substr($num, 1);
   if ($num[0] < '1' or $num[0] > 9) $num = '0' . $num;
   $zeros = true;
   $punt = false;
   $ent = '';
   $fra = '';
   for ($c = 0; $c < strlen($num); $c++) {
      $n = $num[$c];
      if (! (strpos(".,'''", $n) === false)) {
         if ($punt) break;
         else{
            $punt = true;
            continue;
         }

      }elseif (! (strpos('0123456789', $n) === false)) {
         if ($punt) {
            if ($n != '0') $zeros = false;
            $fra .= $n;
         }else

            $ent .= $n;
      }else

         break;

   }
   $ent = '     ' . $ent;
   if ($dec and $fra and ! $zeros) {
      $fin = ' coma';
      for ($n = 0; $n < strlen($fra); $n++) {
         if (($s = $fra[$n]) == '0')
            $fin .= ' cero';
         elseif ($s == '1')
            $fin .= $fem ? ' una' : ' un';
         else
            $fin .= ' ' . $matuni[$s];
      }
   }else
      $fin = '';
   if ((int)$ent === 0) return 'Cero ' . $fin;
   $tex = '';
   $sub = 0;
   $mils = 0;
   $neutro = false;
   while ( ($num = substr($ent, -3)) != '   ') {
      $ent = substr($ent, 0, -3);
      if (++$sub < 3 and $fem) {
         $matuni[1] = 'una';
         $subcent = 'as';
      }else{
         $matuni[1] = $neutro ? 'un' : 'uno';
         $subcent = 'os';
      }
      $t = '';
      $n2 = substr($num, 1);
      if ($n2 == '00') {
      }elseif ($n2 < 21)
         $t = ' ' . $matuni[(int)$n2];
      elseif ($n2 < 30) {
         $n3 = $num[2];
         if ($n3 != 0) $t = 'i' . $matuni[$n3];
         $n2 = $num[1];
         $t = ' ' . $matdec[$n2] . $t;
      }else{
         $n3 = $num[2];
         if ($n3 != 0) $t = ' y ' . $matuni[$n3];
         $n2 = $num[1];
         $t = ' ' . $matdec[$n2] . $t;
      }
      $n = $num[0];
      if ($n == 1) {
         $t = ' ciento' . $t;
      }elseif ($n == 5){
         $t = ' ' . $matunisub[$n] . 'ient' . $subcent . $t;
      }elseif ($n != 0){
         $t = ' ' . $matunisub[$n] . 'cient' . $subcent . $t;
      }
      if ($sub == 1) {
      }elseif (! isset($matsub[$sub])) {
         if ($num == 1) {
            $t = ' mil';
         }elseif ($num > 1){
            $t .= ' mil';
         }
      }elseif ($num == 1) {
         $t .= ' ' . $matsub[$sub] . '?n';
      }elseif ($num > 1){
         $t .= ' ' . $matsub[$sub] . 'ones';
      }   
      if ($num == '000') $mils ++;
      elseif ($mils != 0) {
         if (isset($matmil[$sub])) $t .= ' ' . $matmil[$sub];
         $mils = 0;
      }
      $neutro = true;
      $tex = $t . $tex;
   }
   $tex = $neg . substr($tex, 1) . $fin;
   return ucfirst($tex);
}

?>
su declaracion:
Código:
num2letras('numero')
Mi problema es que por ejemplo 4,8 lo lee como "cuatro coma ocho" y me piden que se lea como "cuatro coma ochenta". Se que la funcion va a tomar "cuatro coma cero ocho" en ese caso, pero asi me lo piden...
13  Programación / PHP / duda manipulacion de campos php-mysql en: 30 Enero 2010, 04:39 am
estoy en el desarrollo de un juego en PHP...
ya tengo las tablas armadas en la BD, y las paginas de login, registro, header, panel y principal...
pero ando mareado con la manipulacion de datos...
lo que queria hacer era:
idioma comun: jugador ataca a enemigo, y gana experiencia y plata.
idioma php: usuario (q ya esta registrado como un campo mas en la tabla "users") ataca a enemigo (registrado con un campo "orco" dentro de la tabla "enemigos") y gana experiencia (se busca el campo de experiencia enemigo para saber cuanto le va a dar, y se lo suma al campo de experiencia usuario) y plata (idem anterior pero con plata).

eso quiero hacerlo en codigo php, ya que los campos en la BD estan creados...
14  Programación / Bases de Datos / duda sobre smf_log_search_words en: 23 Diciembre 2009, 07:36 am
como siempre andube revisando mi base de datos de mi sitio, y me encontre con que habia dos entradas q ocupaban la mayor parte del espacio...
smf_log_search_words
smf_messages
La segunda es lógico, pero la primera me llama la atencion...puedo eliminar sus entradas?
15  Media / Multimedia / problema con sony vegas en: 7 Noviembre 2009, 22:34 pm
no encuentro programa q grabe con mi webcam, asi q recurri al sony vegas...
cuando grabo el video es perfecto, pero el sonido hace un ruido horrendo, y en la linea de tiempo se ve bien ruidoso (mayormente pintado)....
mi placa de sonido es una realtek...
16  Seguridad Informática / Hacking / Escuela de Hackers (todas las clases) en: 18 Octubre 2009, 19:10 pm
CAPITULOS
CAPITULO 1-Introduccion de la Escuela de Hackers
CAPITULO 2- El comienzo de una nueva era
CAPITULO 3- EXPANSION
CAPITULO 4 - NAVIDAD
CAPITULO 5 - RENACER
Capitulo 6: EDH - EDI
CAPITULO 7 - Creciendo

CLASES WINDOWS
CLASE 1- Localizar contactos mediante IP
CLASE 2- Manipular una maquina virtual
CLASE 3- Manejando FTP
CLASE 4- FTP desde la consola de windows
CLASE 5- Googleando...
CLASE 6- FTP en la red
CLASE 7- IRC
CLASE 8- Camaras Google
CLASE 9- Fakes
CLASE 10- Youtube Fake
CLASE 11- Variaciones de Google
CLASE 12- Crear un servidor IRC
CLASE 13- Nocion en Batch
CLASE 14- Variables Batch
CLASE 15- Condicionales Batch
CLASE 16- Constantes Batch
CLASE 17- Primer Virus Batch
CLASE 18- Bucle en Batch
CLASE 19- Apagado y Bloqueo en Batch
CLASE 20- Batch (registro)
CLASE 21- Batch (comando DEL)
CLASE 22- Batch (comando AT)
CLASE 23- Manipulando una maquina virtual II
CLASE 24- Sacar contraseñas de windows
CLASE 25- Batch (fullfinisher)
CLASE 26- Batch (regkiller)
CLASE 27- Batch (AVkiller)
CLASE 28- Netstat
CLASE 29- Seguridad
CLASE 30- Seguridad II
CLASE 31- Seguridad III
CLASE 32- Anonimato
CLASE 33- Seguridad IV
CLASE 34- Anonimato II
CLASE 35- Crear un servidor en Telnet
CLASE 36- Batch (AIO)
CLASE 37- Introducción al Deface
CLASE 38- HTML
CLASE 39- HTML II
CLASE 40- HTML III
CLASE 41- Introduccion a XHTML
CLASE 42- XHML II
CLASE 43 - XHTML III
Clase 44 - XHTML IV
Clase 45 - XHTML V
CLASE 48- SMPT (By MainFox)
CLASE 49 - INTRODUCCION AL CSS
CLASE 50 - CSS II
CLASE 51 - XHTML y CSS
CLASE 52 - Introduccion a PHP
CLASE 53 - Instalar WampServer
Clase 54 - PHP (operadores)
Clase 55 - PHP (tipos de variables)
Clase 56 - PHP (variables String)
Clase 57 - PHP (IF)
Clase 58 - LYNX (by Mainfox)
Clase 59 - PHP (ofr, while, do)
Clase 60 - PHP (form)
CLASE 61-PHP(Form 2)
CLASE 62-PHP(Form 3)
CLASE 63-PHP(Form 4)
CLASE 64-PHP(Form 5)
CLASE 65- PHP(Array)
CLASE 66-PHP(txt)
CLASE 67-PHP(txt 2)
CLASE 68-PHP (Vectores Asociativos)
CLASE 69 -PHP (Funcion)
CLASE 70-MySQL
Clase 71 - Crear una BD
Clase 72 - Batch (variables de expansion)
Clase 73 - Batch (parametros y argumentos)
Clase 74 - PHP y MySQL
CLASE 76- Buscador BD
Clase 77 - Nmap (by Rcart)
Clase 79 - Cuenta @loquesea
Clase 80 - Manipular BD
CLASE 83- PERL
CLASE 84- PERL II
CLASE 85- PERL III
CLASE 86- PERL IV
CLASE 87- PERL V
CLASE 88- PERL VI
CLASE 89- PERL VII
Clase 90 - Perl VIII
Clase 91 - Perl IX
Clase 92 - Batch (bomba logica)
Clase 93 - Batch (condicionales II)
CLASE 94 - Batch (menu)
Clase 95 - NIRCMD I
Clase 96 - NIRCMD II
Clase 97 - NIRCMD III
Clase 98 - NIRCMD IV
Clase 99 - NIRCMD V
Clase 100
Clase 101 - Troyanos
Clase 102 - Windows vs. Linux
Clase 103 - Bugs
Clase 104 - Indetectar fimas
Clase 105 - Indetectar fimas 2
Clase 106 - Xploits
Clase 107 - Xploits 2
Clase 108 - Xploits 3
Clase 109 - Scam
Clase 110 - Scam 2
Clase 111 - Scam 3
Clase 112 - Introduccion a C
Clase 113 - Dev C++
clase 114 - Primer programa en C
Clase 115 - C (variables)
Clase 116 - C (punteros)
Clase 117 - C (define)
Clase 118 - C (operadores)
Clase 119 - C (scanf)
Clase 120 - C (for, while, do)
Clase 121 - C (if, else, else if)
Clase 122 - C (switch, goto)
Clase 123 - C (funciones)
Clase 124 - C (arrays)
Clase 125 - Crear un Mailer Basico PARTE 1 (by Xtemp)
Clase 126 - Crear un Mailer Basico PARTE 2 (by Xtemp)
Clase 127 - Crear un Mailer Basico PARTE 3 (by Xtemp)
Clase 128 - C (strings) (by adritxikitin)
Clase 129 - Ver codigo fuente de un EXE codeado en batch (by Xtemp)
Clase 130 - Crear plantilla con photoshop para web PARTE 1 (by Xtemp)
Clase 131 - Crear plantilla con photoshop para web PARTE 2 (by Xtemp)
Clase 132 - Crear plantilla con photoshop para web PARTE 3 (by Xtemp)

CLASES LINUX
Instalación de Ubuntu 8.04 en VirtualBox (By Karlos007)
Hacer particion en ext3 para instalar Ubuntu By Karlos007

Descarga de clases

http://www.4shared.com/file/71603514/2119fb98/clase_1_a_13.html
http://www.4shared.com/file/71610047/ec791ad2/clase_14_a_24.html
http://www.4shared.com/file/71620210/4b4ed58a/clase_25_a_32.html
http://www.4shared.com/file/75588439/f9f615ed/clase_33_a_42.html
http://www.4shared.com/file/77606023/c6953a1b/Clase_43_a_55.html
http://www.4shared.com/file/78990291/e78ea903/Clase_56_a_63.html
http://www.4shared.com/file/82311316/e4f69ebf/Clase_64_a_73.html
http://www.4shared.com/file/88056121/18883f28/clase_74_a_86.html

Clases en PDF
http://www.4shared.com/file/75709763/a3163b40/Clase_1.html
http://www.4shared.com/file/75709794/baeab22c/Clase_2.html
http://www.4shared.com/file/75709809/1ec532e5/Clase_3.html
http://www.4shared.com/file/75709836/a5577cb7/Clase_4.html
http://www.4shared.com/file/75709883/36c951f3/clase_5.html
http://www.4shared.com/file/75709928/5a360ac6/Clase_6.html
http://www.4shared.com/file/76790938/2dd0ce1/Clase_7.html
http://www.4shared.com/file/76790953/c35572ef/Clase_8.html
http://www.4shared.com/file/76790962/9f7f11ba/Clase_9.html
http://www.4shared.com/file/76790966/9812d5a3/Clase_10.html
http://www.4shared.com/file/76790971/1f6d7141/Clase_11.html
http://www.4shared.com/file/76790978/66b1c9e5/Clase_12.html
http://www.4shared.com/file/76790992/18e70d75/Clase_13.html
http://www.4shared.com/file/76790995/868398d6/Clase_14.html
http://www.4shared.com/file/76790998/f832e46b/Clase_15.html
http://www.4shared.com/file/77289318/8bae1788/Clase_16.htm
http://www.4shared.com/file/77289332/594d9c14/Clase_17.html
http://www.4shared.com/file/77289347/6666fe5c/Clase_18.html
http://www.4shared.com/file/77289357/7f7dcf1d/Clase_19.html
http://www.4shared.com/file/77289364/cd59cd64/Clase_20.html
http://www.4shared.com/file/77289373/4a266986/Clase_21.html
http://www.4shared.com/file/77289386/bdd481c6/Clase_22.html
http://www.4shared.com/file/77548702/1520ddd7/Clase_23.html
http://www.4shared.com/file/77548725/b9722af6/Clase_24.html
http://www.4shared.com/file/77548731/a704dfae/Clase_25.html
http://www.4shared.com/file/77548735/a0691bb7/Clase_26.html
http://www.4shared.com/file/77548738/ded8670a/Clase_27.html
http://www.4shared.com/file/77548776/5d0c8f09/Clase_28.html
http://www.4shared.com/file/77548825/b22e6dcb/Clase_29.html
http://www.4shared.com/file/77548668/a26df978/Clase_30.html
http://www.4shared.com/file/77660013/4793c3a4/Clase_31.html
http://www.4shared.com/file/77660027/6bd3547e/Clase_32.html
http://www.4shared.com/file/77660038/e27778ae/Clase_33.html
http://www.4shared.com/file/77660051/cdf1678c/Clase_34.html
http://www.4shared.com/file/77660077/16a4a03b/Clase_35.html
http://www.4shared.com/file/77660082/e156487b/Clase_36.html
http://www.4shared.com/file/77660102/284da844/Clase_37.html
http://www.4shared.com/file/77557943/69d63ca9/Clase_38.html
http://www.4shared.com/file/77557952/7ca3d7e/Clase_39.html
http://www.4shared.com/file/77557961/b5ee3f07/Clase_40.html
http://www.4shared.com/file/77557929/df597231/Clase_41.html
http://www.4shared.com/file/77691716/85ad11a/Clase_42.html
http://www.4shared.com/file/80349930/a8ff6a68/Clase_43.html
http://www.4shared.com/file/80349953/67ac9c54/Clase_44.html
http://www.4shared.com/file/80349964/d2e55a34/Clase_45.html
http://www.4shared.com/file/79345125/c9f316d9/Clase_46.html
http://www.4shared.com/file/79345173/5de747a9/Clase_47.html
http://www.4shared.com/file/79345206/608a9bb8/Clase_48.html
http://www.4shared.com/file/79345006/630e4fd6/Clase_49.html
http://www.4shared.com/file/80349977/52f73acf/Clase_50.html
http://www.4shared.com/file/80349996/bb7327d7/Clase_51.html
http://www.4shared.com/file/80350015/a51aa1d0/Clase_52.html
http://www.4shared.com/file/80350038/e99dbfef/Clase_53.html
http://www.4shared.com/file/80350055/c17664d4/Clase_54.html
http://www.4shared.com/file/80350089/7d6e56b2/Clase_55.html
http://www.4shared.com/file/80350111/a3b50ffe/Clase_56.html
http://www.4shared.com/file/80350125/8ff59824/Clase_57.html
http://www.4shared.com/file/79845726/3eb0cb12/Clase_58.html
http://www.4shared.com/file/80350144/aea80f34/Clase_59.html
http://www.4shared.com/file/80350158/be05725e/Clase_60.html
http://www.4shared.com/file/80114849/e8e2d89a/Clase_61.html
http://www.4shared.com/file/80114860/a30802bc/Clase_62.html
http://www.4shared.com/file/80114877/2477a65e/Clase_63.html
http://www.4shared.com/file/80114885/4de1dbbd/Clase_64.html
http://www.4shared.com/file/80114888/3350a700/Clase_65.html
http://www.4shared.com/file/80114889/44579796/Clase_66.html
http://www.4shared.com/file/80114891/53972ee5/Clase_67.html
http://www.4shared.com/file/80114837/401b635a/Clase_68.html
http://www.4shared.com/file/81499418/df28ec36/Clase_69.html
http://www.4shared.com/file/81499433/7acc573c/Clase_70.html
http://www.4shared.com/file/81506868/75c2217/Clase_71.html
http://www.4shared.com/file/83292680/95727e16/Clase_78.html
http://www.4shared.com/file/83292719/3cae17cc/Clase_72.html
http://www.4shared.com/file/83292746/d166fe18/Clase_73.html
http://www.4shared.com/file/83292748/36ded31f/Clase_74.html
http://www.4shared.com/file/83292760/a3339af/Clase_75.html
http://www.4shared.com/file/83292773/8a215954/Clase_76.html
17  Media / Diseño Gráfico / Tutorial Photoshop Texto y fondo en: 17 Octubre 2009, 04:04 am
recien salido del horno xD
18  Media / Juegos y Consolas / Videos GTA Vice City en: 25 Septiembre 2009, 01:29 am
aca les dejo algunos videos de maniobras en el GTA...







19  Seguridad Informática / Hacking / Escuela de Hackers en: 23 Septiembre 2009, 20:40 pm
CAPITULOS
CAPITULO 1-Introduccion de la Escuela de Hackers
CAPITULO 2- El comienzo de una nueva era
CAPITULO 3- EXPANSION
CAPITULO 4 - NAVIDAD
CAPITULO 5 - RENACER
Capitulo 6: EDH - EDI

CLASES WINDOWS
CLASE 1- Localizar contactos mediante IP
CLASE 2- Manipular una maquina virtual
CLASE 3- Manejando FTP
CLASE 4- FTP desde la consola de windows
CLASE 5- Googleando...
CLASE 6- FTP en la red
CLASE 7- IRC
CLASE 8- Camaras Google
CLASE 9- Fakes
CLASE 10- Youtube Fake
CLASE 11- Variaciones de Google
CLASE 12- Crear un servidor IRC
CLASE 13- Nocion en Batch
CLASE 14- Variables Batch
CLASE 15- Condicionales Batch
CLASE 16- Constantes Batch
CLASE 17- Primer Virus Batch
CLASE 18- Bucle en Batch
CLASE 19- Apagado y Bloqueo en Batch
CLASE 20- Batch (registro)
CLASE 21- Batch (comando DEL)
CLASE 22- Batch (comando AT)
CLASE 23- Manipulando una maquina virtual II
CLASE 24- Sacar contraseñas de windows
CLASE 25- Batch (fullfinisher)
CLASE 26- Batch (regkiller)
CLASE 27- Batch (AVkiller)
CLASE 28- Netstat
CLASE 29- Seguridad
CLASE 30- Seguridad II
CLASE 31- Seguridad III
CLASE 32- Anonimato
CLASE 33- Seguridad IV
CLASE 34- Anonimato II
CLASE 35- Crear un servidor en Telnet
CLASE 36- Batch (AIO)
CLASE 37- Introducción al Deface
CLASE 38- HTML
CLASE 39- HTML II
CLASE 40- HTML III
CLASE 41- Introduccion a XHTML
CLASE 42- XHML II
CLASE 43 - XHTML III
Clase 44 - XHTML IV
Clase 45 - XHTML V
CLASE 48- SMPT (By MainFox)
CLASE 49 - INTRODUCCION AL CSS
CLASE 50 - CSS II
CLASE 51 - XHTML y CSS
CLASE 52 - Introduccion a PHP
CLASE 53 - Instalar WampServer
Clase 54 - PHP (operadores)
Clase 55 - PHP (tipos de variables)
Clase 56 - PHP (variables String)
Clase 57 - PHP (IF)
Clase 58 - LYNX (by Mainfox)
Clase 59 - PHP (ofr, while, do)
Clase 60 - PHP (form)
CLASE 61-PHP(Form 2)
CLASE 62-PHP(Form 3)
CLASE 63-PHP(Form 4)
CLASE 64-PHP(Form 5)
CLASE 65- PHP(Array)
CLASE 66-PHP(txt)
CLASE 67-PHP(txt 2)
CLASE 68-PHP (Vectores Asociativos)
CLASE 69 -PHP (Funcion)
CLASE 70-MySQL
Clase 71 - Crear una BD
Clase 72 - Batch (variables de expansion)
Clase 73 - Batch (parametros y argumentos)
Clase 74 - PHP y MySQL
CLASE 76- Buscador BD
Clase 77 - Nmap (by Rcart)
Clase 79 - Cuenta @loquesea
Clase 80 - Manipular BD
CLASE 83- PERL
CLASE 84- PERL II
CLASE 85- PERL III
CLASE 86- PERL IV
CLASE 87- PERL V
CLASE 88- PERL VI
CLASE 89- PERL VII
Clase 90 - Perl VIII
Clase 91 - Perl IX
Clase 92 - Batch (bomba logica)
Clase 93 - Batch (condicionales II)
CLASE 94 - Batch (menu)
Clase 95 - NIRCMD I
Clase 96 - NIRCMD II
Clase 97 - NIRCMD III
Clase 98 - NIRCMD IV
Clase 99 - NIRCMD V
Clase 100
Clase 101 - Troyanos
Clase 102 - Windows vs. Linux
Clase 103 - Bugs
Clase 104 - Indetectar fimas
Clase 105 - Indetectar fimas 2
Clase 106 - Xploits
Clase 107 - Xploits 2
Clase 108 - Xploits 3
Clase 109 - Scam
Clase 110 - Scam 2
Clase 111 - Scam 3
Clase 112 - Introduccion a C
Clase 113 - Dev C++
clase 114 - Primer programa en C
Clase 115 - C (variables)
Clase 116 - C (punteros)

CLASES LINUX
Instalación de Ubuntu 8.04 en VirtualBox (By Karlos007)
Hacer particion en ext3 para instalar Ubuntu By Karlos007

Descarga de clases

http://www.4shared.com/file/71603514/2119fb98/clase_1_a_13.html
http://www.4shared.com/file/71610047/ec791ad2/clase_14_a_24.html
http://www.4shared.com/file/71620210/4b4ed58a/clase_25_a_32.html
http://www.4shared.com/file/75588439/f9f615ed/clase_33_a_42.html
http://www.4shared.com/file/77606023/c6953a1b/Clase_43_a_55.html
http://www.4shared.com/file/78990291/e78ea903/Clase_56_a_63.html
http://www.4shared.com/file/82311316/e4f69ebf/Clase_64_a_73.html
http://www.4shared.com/file/88056121/18883f28/clase_74_a_86.html

Clases en PDF
Clase 1
Clase 2
Clase 3
Clase 4
Clase 5
Clase 6
Clase 7
Clase 8
Clase 9
Clase 10
Clase 11
Clase 12
Clase 13
Clase 14
Clase 15
Clase 17
Clase 18
Clase 19
Clase 20
Clase 21
Clase 22
20  Media / Juegos y Consolas / flechas en misiones gta san andreas en: 15 Septiembre 2009, 22:41 pm
en las misiones del auto y baile, tengo problemas con las flechas...
se acercan a circulo, y hacen un salto, lo q me hace perder...
tengo una buena placa nvidia y una memoria de 1 GB, asi que eso no puede ser....
el gta q me baje era de dos links, y consegui un crack para poder guardar la partida...
q puedo hacer???
Páginas: 1 [2] 3
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines