Пока администрация делает всем заметные изменения, будоражащие публику, дело доходит до не менее волнующего события в открытом коде игры, на который обращают далеко не сразу, а именно - был добавлен код для ключевого умения не введённого существа альта СВ - Паокаев (Поглощение трупов). Далее будет представлена сама выдержка из одного игрового файла, на чём и был основан вывод.
if
(mname==
'coe'
){
i = tointeger(mag.substr(3, 3));
j = tointeger(mag.substr(6, 3));
m = tointeger(mag.substr(9, 6));
if
(autoscroll) {
scrollto(
this
.obj[j].x,
this
.obj[j].y);
}
//* scr.consumecorpse.setunit(j);*/
// this.obj[i].setmagic('consumecorpse');
this
.obj[i].attacker =
false
;
this
.obj[i].destx =
this
.obj[j].x;
this
.obj[i].desty =
this
.obj[j].y;
switch
(lang){
case
0:
htmllog +=
this
.html(
'name'
, i)+
' съедают труп '
+
this
.html(
'name'
, j)+
'.'
+
this
.html(
'end'
);
break
;
case
1:
htmllog +=
this
.html(
'name'
, i)+
' eat corpses of '
+
this
.html(
'name'
, j)+
'.'
+
this
.html(
'end'
);
break
;
};
// this.showmagic('consumecorpse', this.obj[j].x, this.obj[j].y, this.obj[j].x, this.obj[j].y, 0, 0, 0, i);
showtext();
this
.obj[i].donow =
"c"
;
this
.obj[i].active =
true
;
someactive =
true
;
this
.obj[j].doing =
"hide"
;
this
.obj[j].frame = 0;
this
.obj[j].cur_frame_need = 50;
this
.obj[j].active =
true
;
};
|