This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<title>Inix Engine</title> | |
<meta charset="utf-8" /> | |
<link href="./inix/css/init.css" rel="stylesheet" /> | |
<script src="./inix/external/gl-matrix-min.js"></script> | |
<script src="./inix/three.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
##################################################### | |
## BeatRock ## | |
##################################################### | |
## Framework avanzado de procesamiento para PHP. ## | |
##################################################### | |
## InfoSmart © 2013 Todos los derechos reservados. ## | |
## http://www.infosmart.mx/ ## | |
##################################################### | |
## http://beatrock.infosmart.mx/ ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var i = 0; | |
function time(){return Math.floor(new Date().getTime()/1000);} | |
function Vote() | |
{ | |
$.ajax({ | |
type: "GET", | |
url: "http://www.oye897.com.mx/o1/modulos/hitazos2.php", | |
data: {'a':'Vk9UQUhJVEFaTw==','w':'NTM5','key': time()}, | |
contentType: "application/x-www-form-urlencoded", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
##################################################### | |
## BeatRock ## | |
##################################################### | |
## Framework avanzado de procesamiento para PHP. ## | |
##################################################### | |
## InfoSmart © 2013 Todos los derechos reservados. ## | |
## http://www.infosmart.mx/ ## | |
##################################################### | |
## http://beatrock.infosmart.mx/ ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
require 'Init.php'; | |
$testing = __('¿Que Carajo Estoy Haciendo?'); | |
$testing->replace('Haciendo', 'Poniendo')->lower(); | |
echo $testing, '<br />'; // ¿que carajo estoy poniendo? | |
echo $testing->encode('base64'), '<br />'; // wr9xdWUgY2FyYWpvIGVzdG95IHBvbmllbmRvPw== | |
echo $testing->original; // ¿Que Carajo Estoy Haciendo? | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
require 'Init.php'; | |
$testing = __('¿Que Carajo Estoy Haciendo?'); | |
echo $testing->replace('Haciendo', 'Poniendo'); // ¿Que Carajo Estoy Poniendo? | |
echo '<br />'; | |
echo $testing->undo(); // ¿Que Carajo Estoy Haciendo? | |
echo '<br />'; | |
echo $testing->lower(); // ¿que carajo estoy haciendo? | |
echo '<br />'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
require 'Init.php'; | |
$words = __('Esta palabra tiene muchas palabras'); | |
echo $words->translate('es', 'en'); // This word has many words | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"GameInfo" | |
{ | |
game "Apocalypse" | |
gamelogo 1 | |
title "" | |
title2 "" | |
nodifficulty 1 | |
nocrosshair 1 | |
nomodels 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Resource/HudLayout.res" | |
{ | |
HudHealth [$WIN32] | |
{ | |
"fieldName" "HudHealth" | |
"xpos" "16" | |
"ypos" "432" | |
"wide" "65" | |
"tall" "36" | |
"visible" "0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# ¡BeatRock! | |
require '../Init.php'; | |
# Inicializamos la SDK. | |
$accounts = new IC(array( | |
'public' => 'qhgyupruksiul2ggiilf7h0r8ihpt', | |
'private' => 'ldqgsw7ydfoacenchpe89a8whmkl3hcat1j8mgmxonhi6qrq9dt2vu83r5i' | |
)); |