Archived Comments (locked)

in
Subscribe to Archived Comments 9 posts, 6 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
ogame++notIl... Scriptwright

Bueno es la primera vez que posteo algo en userscripts y por lo visto los saltos de linea no se pueden insertar...
Dejo el script modificado en:
http://userscripts.org/scripts/source/7150.user.js

 
ogame++notIl... Scriptwright

// Actualizacion de Vision general Automatico

// Version 1.0

// Septiembre 5 , 2006

// Copyright (c) 2006, Pete Hanson and Edited for Ogame by Lord Mokuba

// Released under the GPL license

// http://www.gnu.org/copyleft/gpl.html

//

// la idea es que la vision general se actualize cada 3 minutos para asi poder ver ataques de forma automatica y no tener que actualizarlo manualmente

//

// ==UserScript==

// @name Ogame Actualizacion Vision general Automatico

// @author Lord Mokuba

// @namespace http://www.ogame.com.es

// @description Actualiza la vision general automaticamente. cada cierto tiempo

// @include http://ogame*.de/game/overview.php?*

// ==/UserScript==

//

// Constantes Globales

var ONESEC = 1000 ; // Un segundo (in ms)

var ONEMIN = 60 * ONESEC ; // Un Minuto (in ms)=
var MIN = 1 * ONEMIN ; // Minimos minutos
var MAX = 10 * ONEMIN ; // Maximos minutos

function aleatorio(inferior,superior){
numPosibilidades = superior - inferior
aleat = Math.random() * numPosibilidades
aleat = Math.round(aleat)
return parseInt(inferior) + aleat
}

window.setTimeout(

function()

{

window.location.reload() ;

},

aleatorio(MIN, MAX)

) ;

 
ogame++notIl... Scriptwright

Y para resolver esto....
Haremos que el intervalo sea aleatorio.
Dejo el script modificado para que sea indetectable, para ello haria falta modificar las variables MIN y MAX al gusto del consumidor, por defecto esta a MIN= 1 y MAX= 10

 
ogame++notIl... Scriptwright

Si que podria ser detectable si la actualizacion no se hace aleatoria.

 
Marcel Garcia User

Me da igual lo que digan, si va bien para el juego lo usare.
Lo importante es que no sea detectable por ogame y dudo que esto lo detecte.

 
m4rkuz User

este script es ilegal.

 
elpeter Scriptwright

Es legal usar este script¿? Gracias

 
ccholz User

Podrias hacer que en vez de ser fija la cantidad de tiempo de actualizacion sea al azar en 5 y 30 minutos?
Gracias

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel