[Tool/Web/Other] iPsTeaM Mapas Online
#2

Este script tem a mesma funзгo deste:
https://sampforum.blast.hk/showthread.php?tid=48543

Mas nгo utiliza APIs da ******. Eu prуprio recriei baseado em uma imagem e usei cбlculos para deixar preciso a colocaзгo do player em relaзгo a posiзгo da imagem/ponto

_
ATUALIZAЗГO IMPORTANTE

mapa.html Atualizado 21/06/2012
PHP Code:

<DIV style='position:relative;' id="armazenarTudo">
    <
img id=tamanhoImagem src='mapa_cista.jpg' height=480 width=480 style='position:absolute; top:3px; left:1px;'>
    </
img>
</
div>
<
script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>

<script>
// =========================== [ Configuraзхes ] =========================================
var siteUrl = "index.php?lermapas=1";
var tempoAtualizacao = 1000;
var hoverLigado = false;
// =========================== [ Configuraзхes ] =========================================
executarArquivo();
    
function deletarUsuarios()
{
    document.getElementById("armazenarTudo").innerHTML = "<img id=tamanhoImagem src='mapa_cista.jpg' height=480 width=480 style='position:absolute; top:3px; left:1px;'></img>";
    return true;
}
function criarUsuario(playerid, vida, colete, dinheiro, arma, nome , cor)
{
    var c = parseInt(cor);
    var r = (c >> 24) & 0xFF;
    var g = (c >> 16) & 0xFF;
    var b = (c >> 8) & 0xFF;
 
 
    var cor_rgb =  '#' + r.toString(16) + g.toString(16) +b .toString(16);
    return document.getElementById("armazenarTudo").innerHTML += "<div style='position:absolute; top:0px; left:6px; ' id='textoAcima" + playerid + "' onMouseOver='document.getElementById(\"textoEncima" + playerid +  "\").style.display = \"block\";hoverLigado= true;' onmouseout='document.getElementById(\"textoEncima" + playerid +  "\").style.display = \"none\";hoverLigado= false;'><font size=6 color="+ cor_rgb +">•</font><div style='float:left;position:absolute;top:35;height:120px;width:210px;background-color:black;-webkit-border-radius: 10px 15px;display:none;' id='textoEncima" + playerid + "' ><p><font size=1 color=white face=verdana>    Jogador: "+ nome + "<br/>    Vida:" + vida + "<br/>    Colete: " + colete + "<br/>    Dinheiro: " + dinheiro + "<br/>    Arma: " + arma + "</font></p></div></div>";
}
function executarArquivo()
{
    if(hoverLigado == false)
    {
        deletarUsuarios();
    
        $.get(siteUrl, function (data) {
        
            var jogadores = data.split("\n");
        
            for(var i = 1; i != (jogadores.length + 1); i++)
            {    
    
                var dados = jogadores[i].split("|");
                if(dados[0].length > 2) {
                    criarUsuario(i, dados[1], dados[2], dados[3], dados[4], dados[0], dados[7]);
    
                    colocarPosicao(i, Math.round(dados[5]), Math.round(dados[6]));
                }
            }
        
        });
    }
    setTimeout('executarArquivo();',tempoAtualizacao);
}
function colocarPosicao(playerid, x,y)
{
    x = Math.round(((x         + 2855) / 2) * (document.getElementById("tamanhoImagem").width  / 3000));
    y = Math.round((((y * -1)     + 2855) / 2) * (document.getElementById("tamanhoImagem").height / 3000));
    var name = 'textoAcima' + playerid;
    document.getElementById(name).style.top =  (y) +  "px";
    document.getElementById(name).style.left =  (x)  +  "px";
}
</script> 
IMAGEM DO FUNCIONAMENTO
Reply


Messages In This Thread
iPsTeaM Mapas Online - by ipsBruno - 21.06.2012, 22:52
Re: iPsTeaM Mapas Online - by ipsBruno - 21.06.2012, 22:57
Re: iPsTeaM Mapas Online - by cJMaster_ - 21.06.2012, 23:14
Re: iPsTeaM Mapas Online - by Smith. - 21.06.2012, 23:19
Re: iPsTeaM Mapas Online - by ipsBruno - 21.06.2012, 23:36
Re: iPsTeaM Mapas Online - by paulor - 21.06.2012, 23:42
Re: iPsTeaM Mapas Online - by bgmrk - 21.06.2012, 23:51
Re: iPsTeaM Mapas Online - by Truck - 21.06.2012, 23:56
Re: iPsTeaM Mapas Online - by sanalex - 21.06.2012, 23:56
Re: iPsTeaM Mapas Online - by Kuddy - 21.06.2012, 23:57

Forum Jump:


Users browsing this thread: 1 Guest(s)