Cum să pui moral pe hartă
:: GAMES :: Triburile Speed
Pagina 1 din 1
Cum să pui moral pe hartă
Am facut un tutorial pentru a adauga moralul jucatorilor pe harta!
1.Intrați în script.js din htdocs
2.Căutați următorul cod:
5.Intră în templates/game_map.tpl
6.Caută codul :
1.Intrați în script.js din htdocs
2.Căutați următorul cod:
- Cod:
function map_popup(title, points, owner, ally, village_groups) {
map_move();
setText(gid("info_title"), title);
setText(gid("info_points"), points);
if(owner != null) {
setText(gid("info_owner"), owner);
gid("info_owner_row").style.display = '';
gid("info_left_row").style.display = 'none';
}
else {
gid("info_owner_row").style.display = 'none';
gid("info_left_row").style.display = '';
}
if(ally != null) {
gid("info_ally_row").style.display = '';
setText(gid("info_ally"), ally);
}
else {
gid("info_ally_row").style.display = 'none';
}
if(village_groups) {
gid("info_village_groups_row").style.display = '';
setText(gid("info_village_groups"), village_groups);
} else {
gid("info_village_groups_row").style.display = 'none';
}
var info = gid("info");
info.style.visibility = "visible";
}
- Cod:
var xmlhttp;
function map_popup(title, points, owner, ally, village_groups,x,y,origin_id){
map_move();
//ajax moral
xmlhttp=GetXmlHttpObject();
var url="AlexDS_proc.php?page=1&x="+x+"&y="+y+"&id="+origin_id+"&sid="+Math.random();
xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4){gid('moral').innerHTML=xmlhttp.responseText;}}
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
//end of ajax moral
5.Intră în templates/game_map.tpl
6.Caută codul :
- Cod:
Grupe:village_groups
- Cod:
Moral
- Cod:
map_popup('{$cl_map->getVillage($x,$y,"name")}({$x}|{$y}) K{$cl_map->getcon($x,$y)}', {$cl_map->getvillage($x,$y,points)}, {$cl_map->playerinfo($x,$y)}, {$cl_map->getally($x,$y)}, false)
- Cod:
map_popup('{$cl_map->getVillage($x,$y,"name")} ({$x}|{$y}) K {$cl_map->getcon($x,$y)}', {$cl_map->getvillage($x,$y,points)}, {$cl_map->playerinfo($x,$y)}, {$cl_map->getally($x,$y)}, false,{$x},{$y},{$village.id})
mYtz@- Nou Venit
- Mesaje : 13
Reputatie : 2
Varsta : 30
Localizare : Sibiu
Stare de spirit : Buna
:: GAMES :: Triburile Speed
Pagina 1 din 1
Permisiunile acestui forum:
Nu puteti raspunde la subiectele acestui forum