Can anyone help me with this?, Actually brAthena Already have the codes for this but since I was using rAthena 15490 I think it doesn't met the codes when I was Patching the diff..
It was really a hard time for since I'm a starter.. Hope you guys would help me with this thing..
And Here's the NPC Script I use..
//===== eAthena Script =======================================
//= Tombstone
//===== By: ==================================================
//= Mark translated by Dikalz
//===== Current Version: =====================================
//= 1.0
//===== Compatible With: =====================================
//= n-Xtream SVN
//===== Description: =========================================
//= [Aegis Conversion]
//= MVP Tombstone
//===== Additional Comments: =================================
//= 1.0 First Version. [Mark]
//============================================================
- script Tomb::TOMBSTONE 565,{
mes "[ ^FF0000" + getmonsterinfo(atoi(strnpcinfo(2)),0) + "^000000 ]";
mes "Has met its demise";
mes "Time of death : ^FF0000"+getd(".h"+strnpcinfo(3)+"")+":"+getd(".m"+strnpcinfo(3)+"")+"^000000";
mes "Defeated by";
set [email protected], (atoi(strnpcinfo(3))/ pow(10,(getstrlen(strnpcinfo(3)) - 6)));
query_sql "SELECT `name` FROM `char` WHERE `char_id` = "+ [email protected] +"",[email protected]$;
mes "[^FF0000" + [email protected]$ + "^000000]";
close;
OnTombstone:
setd ".h"+strnpcinfo(3)+"",gettime(3);
setd ".m"+strnpcinfo(3)+"",gettime(2);
sleep2 10000;
setnpcdisplay(strnpcinfo(3),565);
end;
}
Your help will be as awesome as you are : )
Edit : I finally manage it myself : ) Thanks anyways..
Hi guys !!
Can anyone help me with this?, Actually brAthena Already have the codes for this but since I was using rAthena 15490 I think it doesn't met the codes when I was Patching the diff..
It was really a hard time for since I'm a starter.. Hope you guys would help me with this thing..
And Here's the NPC Script I use..
//===== eAthena Script ======================================= //= Tombstone //===== By: ================================================== //= Mark translated by Dikalz //===== Current Version: ===================================== //= 1.0 //===== Compatible With: ===================================== //= n-Xtream SVN //===== Description: ========================================= //= [Aegis Conversion] //= MVP Tombstone //===== Additional Comments: ================================= //= 1.0 First Version. [Mark] //============================================================ - script Tomb::TOMBSTONE 565,{ mes "[ ^FF0000" + getmonsterinfo(atoi(strnpcinfo(2)),0) + "^000000 ]"; mes "Has met its demise"; mes "Time of death : ^FF0000"+getd(".h"+strnpcinfo(3)+"")+":"+getd(".m"+strnpcinfo(3)+"")+"^000000"; mes "Defeated by"; set [email protected], (atoi(strnpcinfo(3))/ pow(10,(getstrlen(strnpcinfo(3)) - 6))); query_sql "SELECT `name` FROM `char` WHERE `char_id` = "+ [email protected] +"",[email protected]$; mes "[^FF0000" + [email protected]$ + "^000000]"; close; OnTombstone: setd ".h"+strnpcinfo(3)+"",gettime(3); setd ".m"+strnpcinfo(3)+"",gettime(2); sleep2 10000; setnpcdisplay(strnpcinfo(3),565); end; }Your help will be as awesome as you are : )
Edit : I finally manage it myself : ) Thanks anyways..
Edited by Angry MjooLink to comment
Share on other sites