This file contains 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! | |
require 'Init.php'; | |
# Inicializamos la SDK. | |
$accounts = new IC([ | |
'public' => 'nuv5tu6kpmwjkltbc41eq9wsv8rb0', | |
'private' => 'cuhxezc2vi3wb5w6wre98cqhbe1q6of4txaj0pqq2eewdbsgc1vdfje9q31' | |
]); |
This file contains 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> | |
<meta charset="utf-8" /> | |
<title>Aprendiendo HTML 5!</title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta name="lang" content="es" /> | |
<meta name="description" content="Con este sitio web aprenderas mucho" /> |
This file contains 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> | |
<meta charset="utf-8" /> | |
<title>Aprendiendo HTML 5!</title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta name="lang" content="es" /> | |
<meta name="description" content="Con este sitio web aprenderas mucho" /> |
This file contains 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
WeaponData | |
{ | |
"printname" "#HL2_RPG" | |
"viewmodel" "models/weapons/v_rpg.mdl" | |
"playermodel" "models/weapons/w_rocket_launcher.mdl" | |
"anim_prefix" "missile launcher" | |
"bucket" "4" | |
"bucket_position" "1" |
This file contains 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
WeaponData | |
{ | |
"printname" "#HL2_Crowbar" | |
"viewmodel" "models/weapons/v_crowbar.mdl" | |
"playermodel" "models/weapons/w_crowbar.mdl" | |
"anim_prefix" "crowbar" | |
"bucket" "0" | |
"bucket_position" "0" |
This file contains 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
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// | |
// | |
// Zombi clasico: Lento y con solo ataques de cuerpo a cuerpo. | |
// | |
//=============================================================================// | |
#include "cbase.h" | |
#include "doors.h" | |
#include "simtimer.h" |
This file contains 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
// Ajustamos el modelo de una "mujer" | |
in_player_model "models/player/female.mdl" | |
// No habra armas, por lo tanto no necesitamos ningun efecto. | |
in_beginner_weapon 0 | |
// No habra traje de protección por lo tanto usaremos la linterna sin el. | |
in_flashlight_require_suit 0 | |
// Necesitamos regeneración de salud. |
This file contains 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 Vote() | |
{ | |
$.ajax({ | |
type: "POST", | |
url: SITE_URL+"_ajax_votar.php", | |
data: {'fecha':16,'tema':307}, | |
contentType: "application/x-www-form-urlencoded", | |
dataType: "html", |
This file contains 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
// jQuery: Ejecutar en cuanto este listo el sitio web... | |
$(document).on('ready', function() | |
{ | |
// Ejecutamos la función UpdateBroadcaster() cada 5 segundos. | |
setInterval(UpdateBroadcaster, 5000); | |
// La ejecutamos ahora solo para actualizar el mensaje. | |
UpdateBroadcaster(); | |
}); |
This file contains 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
/** | |
* MTV - Servidor de envio de votos. | |
* | |
* InfoSmart. Todos los derechos reservados. | |
* Copyright 2013 - Iván Bravo Bravo. | |
* | |
* http://tools.infosmart.mx/ - http://nodejs.org/ - http://socket.io/ | |
**/ | |
// Versión del servidor |
OlderNewer