Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - OSI

#1
Códigos Fuentes / Re:[C] Code/Decode Cifrado Garbo
Junio 25, 2010, 10:26:08 AM
de 10 el code , prefiero mi encriptacion tiene menos lio y es mas potente (?)
S4lut3s
#2
Códigos Fuentes / Juego [C] V2
Junio 25, 2010, 10:23:32 AM
A Game Terect (?)
  • Usando Botones del Ratón ;)[/b]
    • Mejoras en el código ;)[/b]
      Código: c
      // Grets : p0fk - ksha - yoya - S[e]C - Antrax - champloo - OzX - [t]err0r - Cervantes_xD - 

      #include <stdio.h>
      #include <GL/glut.h>
      #include <stdlib.h>
      double p0fk = 0.5;
      double ksha = 0.5;
      double mierda = 0.10;

      void trolear ()
      {

      glClear(GL_COLOR_BUFFER_BIT);
      glMatrixMode(GL_MODELVIEW);
      glPushMatrix();
      glColor3d(0,1,1);
      p0fk += 0.3;
      glTranslated(0.5,0.10,1);
      glRotated(p0fk,2,2,2);
      glutWireTeapot(0.30);
      glPopMatrix();

      glPushMatrix();
      glColor3d(0,0,2);
      ksha += 0.6;
      glTranslated(-0.5,0.10,1);
      glRotated(ksha,4,4,4);
      glutWireCone(0.2,20,20,0.21);
      glPopMatrix();

      glPushMatrix();
      glColor3d(3,3,1);
      mierda += 0.7;
      glTranslated(0.20,0.70,1);
      glRotated(mierda,1,1,1);
      glutWireCube(0.20);
      glPopMatrix();
      glutSwapBuffers();
      }
              void dibuja ()
              {
              glMatrixMode(GL_MODELVIEW);
              glPushMatrix();
              glColor3d(3,3,1);
              mierda += 0.3;
              glTranslated(-0.5,0.10,1);
              glRotated(mierda,3,3,3);
              glutWireTeapot(0.30);
              glPopMatrix();
              }

      void des ()
      {
      glutPostRedisplay(); // repintar
      }
      void salir(unsigned char teclado)
      {
      if (teclado == 27)
      {
      exit(EXIT_SUCCESS);
      printf (";)");
      }
      if (teclado == 98)
      {
      ksha +=0.7;
      glTranslated(-0.5,0.10,1);
      glRotated(ksha,4,4,1);
      glutWireTorus(0.3,20,20,0.21);
      glPopMatrix();
      glutSwapBuffers();
      }
      if (teclado == 97)
      {
      p0fk +=0.6;
      glTranslated(+0.50,0.60,1);
      glRotated(p0fk,2,2,1);
      glutWireTeapot(0.20);
      glPopMatrix();
      glutSwapBuffers();
      }

      }
      void movimiento (int boton, int estado , int x, int y)
      {
      if ((estado == GLUT_DOWN) && (boton == GLUT_LEFT_BUTTON))
      {
              glutDisplayFunc(dibuja);
      }
              if ((estado == GLUT_UP) && (boton == GLUT_RIGHT_BUTTON))
              {
              glutDisplayFunc(trolear);
              }
      }
      int main (int argc, char* argv[])
      {

      glutInit(&argc, argv);
      glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);
      glutInitWindowSize(600,300);
      glutInitWindowPosition(500,500);
      glutCreateWindow("The Game");
      glutFullScreen ();


      glClearColor(0,0,0,0);
      glutDisplayFunc(trolear);
      glutMouseFunc(movimiento);
      glutIdleFunc(des);
      glutKeyboardFunc(salir);
      glutMainLoop();

      return 0;
      }
      [/sub][/sub]

      Pronto haré un video extrenando the game
#3
Códigos Fuentes / Juego [C]
Junio 23, 2010, 10:30:10 AM
Mirando manuales y practicando salio esto ;
Código: c
// Grets : p0fk - ksha - yoya - S[e]C - Antrax - champloo - OzX - [t]err0r - Cervantes_xD

#include <stdio.h>
#include <GL/glut.h>
#include <stdlib.h>
double p0fk = 0.5;
double ksha = 0.5;

void trolear ()
{
glClear(GL_COLOR_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glColor3d(0,1,1);
p0fk += 0.3;
glTranslated(0.5,0.10,1);
glRotated(p0fk,2,2,2);
glutWireTeapot(0.30);
glPopMatrix();

glPushMatrix();
glColor3d(0,0,2);
ksha += 0.6;
glTranslated(-0.5,0.10,1);
glRotated(ksha,4,4,4);
glutWireCone(0.2,20,20,0.21);
glPopMatrix();
glutSwapBuffers();
}
void des ()
{
glutPostRedisplay(); // repintar
}
void salir(unsigned char teclado)
{
if (teclado == 27)
{
exit(EXIT_SUCCESS);
print (";) \n");
}
if (teclado == 98)
{
ksha +=0.7;
glTranslated(-0.5,0.10,1);
glRotated(ksha,4,4,1);
glutWireTorus(0.3,20,20,0.21);
glPopMatrix();
glutSwapBuffers();
}
if (teclado == 97)
{
p0fk +=0.6;
glTranslated(+0.5,0.10,1);
glRotated(p0fk,3,3,1);
glutWireTeapot(0.20);
glPopMatrix();
glutSwapBuffers();
}
}
int main (int argc, char* argv[])
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);
glutInitWindowSize(700,200);
glutInitWindowPosition(500,500);
glutCreateWindow("KSHA Y P0FK SON PROTAGONISTAS DEL PROGRAMA");

glClearColor(0,0,0,0);
glutDisplayFunc(trolear);
glutIdleFunc(des);
glutKeyboardFunc(salir);
glutFullScreen();

glutMainLoop();
return 0;
}
#4
See , pero quiero el code del exploit  ::)
#5
Lo compile y me anda perfecto  ;D