Erflow_Renegaos escribió:ericmval escribió:bueno despues de comerme el coco en la firma ya tengo una casi definitiva, solo me falta meterle 2 o 3 cosillas pero casi esta.
Le pondriais algo mas?
alguien podría hacerme el favor de editarme esta imagen,ponerle el fondo transparente y orientar el pincho del cuchillo hacia arriba? gracias
Como se hace esto, no encuentro el sitio para hacerlo. Lo que uquiero es saber donde se editan pa enredar...
tienes que registrarte y una vez logeado vas a graphics y un poco mas abajo hay 3 pestañas: graphics, my graphics y new.
Le das a new para crear uno, my graphics para editar los que has creado y graphics para ver los de los demas(en los que aparece cuando pinchas la pestaña de edit graphic, son los que puedes ver el código,en el resto no podrás saber como lo han hecho)
Este es el codigo de la firma que te he enviado antes,puedes empezar por aqui
defaults.text.size=14;
defaults.text.color='BA1C53';
defaults.text.font='0ozi0pwtZ06woSATqy/youmurdererbb_reg.ttf';
/******Scripts******/
// K/D
var wlr=p.stats.global.wins&&p.stats.global.losses?p.stats.global.wins/p.stats.global.losses:0;
var wlcolor=wlr>=1?'1e8d00':'bf0000';
var kdr=p.stats.global.kills&&p.stats.global.deaths?p.stats.global.kills/p.stats.global.deaths:0;
var kdcolor=kdr>=1?'1e8d00':'bf0000';
var ah=p.stats.vehicles.ahMi28.kills+p.stats.vehicles.ahAH1Z.kills
var sh=p.stats.vehicles.shz11.kills+p.stats.vehicles.shAH6.kills
var tank=p.stats.vehicles.mbtT90.kills+p.stats.vehicles.mbtM1A.kills
var ifv=p.stats.vehicles.ifvBMP.kills+p.stats.vehicles.ifvLAV.kills
// Background image
image({file:'0ozBu3M0312uRaQhb5/firmaflow.jpg', x:0, y:0});
// Rank image
image({file:p.stats.rank.img_medium, x:80, y:12, w:90, h:90});
// images vehicule
image({file:'0ozI9remD12uRaQjdv/ah6.png', x:220, y:-3, w:73, h:44, noresample:0});
image({file:'0ozI9remD12uRaQjdv/mi28.png', x:226, y:20, w:73, h:44, noresample:0});
image({file:'0ozI9remD12uRaQjdv/m1a2.png', x:245, y:51, w:73, h:44, noresample:0});
image({file:'0ozI9remD12uRaQjdv/tunguska.png', x:245, y:90, w:70, h:42, noresample:0});
//headshoot image
image({file:'0ozBu3M0312uRaQhb5/th_headshot.png', x:230, y:135, w:25, h:25});
//input
text({x:310, y:48, align:'center', text:ah});
text({x:302, y:21, align:'center', text:sh});
text({x:332, y:82, align:'center', text:tank});
text({x:328, y:126, align:'center', text:ifv});
// Texto
text({x:36, y:58, text:'K/D ',color:'000000'});
text({x:85, y:58, align:'right', color:kdcolor, text:kdr.toFixed(2)});
text({x:36, y:70, alingn:'left',text:'W/L ',color:'000000'});
text({x:275, y:145, align:'right', color:'FFFFFF',text:p.stats.global.headshots});
text({x:272, y:170, align:'right', color:'FFFFFF', text:p.stats.global.longesths+' m'});
text({x:85, y:70, align:'right', color:wlcolor, text:wlr.toFixed(2)});
//insignias
image({file:p.stats.ribbons.r33.img_medium, x:10, y:175, w:75, h:25});
text({x:22, y:183, size:10, align:'right', text:p.stats.ribbons.r33.count, color:'FFAA00'});
image({file:p.stats.ribbons.r30.img_medium, x:100, y:175, w:75, h:25});
text({x:112, y:183, size:10, align:'right', text:p.stats.ribbons.r30.count, color:'FFAA00'});
image({file:p.stats.ribbons.r31.img_medium, x:190, y:175, w:75, h:25});
text({x:202, y:183, size:10, align:'right', text:p.stats.ribbons.r31.count, color:'FFAA00'});
image({file:p.stats.ribbons.r32.img_medium, x:280, y:175, w:75, h:25});
text({x:292, y:183, size:10, align:'right', text:p.stats.ribbons.r32.count, color:'FFAA00'});
image({file:p.stats.ribbons.r34.img_medium, x:370, y:175, w:75, h:25});
text({x:382, y:183, size:10, align:'right', text:p.stats.ribbons.r34.count, color:'FFAA00'});
//prueba
// Draw latest ribbon if exists
var getLatestRibbon=function(){
if(!p.stats || !p.stats.ribbons) return null;
var ret=null;
for(var r in p.stats.ribbons) {
if(!p.stats.ribbons[r].date) continue;
if(!ret || ret.date<p.stats.ribbons[r].date) {
ret=p.stats.ribbons[r];
}
}
return ret;
};
var splitLongText=function(text,maxlen){
var splits=text.split(' ');
var len=0;
var ret='';
for(var i in splits) {
ret+=splits[i];
len+=splits[i].length;
if(len>maxlen) {
ret+='\n';
len=0;
} else {
ret+=' ';
}
}
return ret;
};
var latestribbon=getLatestRibbon();
if(latestribbon) {
image({file:latestribbon.img_small, x:23, y:93, w:60, h:20});
text({x:85, y:100, size:10, text:splitLongText(latestribbon.name,7), color:'000000'});
}