I think more core developers should look into this topic. As maluffet said, this is one the of fundamentals of all MMORPGs and we can't have a 100% working skills which requires the ATK and MATK formula. I wish I can help with this one but the ATK and MATK formula is hard-coded in the aegis server file.
Does anyone know the system that resets all mobs location in a map after a time duration? I don't know what is it called so I'm just gonna call it "Anti-mob luring". It happens when you lure a lot of aggressive monsters.
For those who doesn't know it, go to ama_fild01 and lure the kaphas in the middle to somewhere far away from their original location and return to town. After a few minutes come back to that map and you will notice that the Kaphas are back to the middle of the map.
Find this line:
packet_db_ver: default
And change it to this one;
packet_db_ver: 30
Quick Edit: Anyways, I have noticed that you are using newer client. You should match the date of your client in mmo.h to the client that you are using right now in order for it to work.
Hi, I would like to request a FluxCP Addon where if possible, instead of registering the game account, it will need ask everyone to register for the Master account first. After you have done setting-up the Master Account, you will now have the option to create a Game Account which you will use to log-in to the game.
The purpose of this request is for the server owners to easily track game accounts.
I modified the file to skip the quest check and removed the setquest which you don't need anymore. You should be able to run the script flawlessly without any errors in the console.
GHMemorial.txt
Im not sure if this will work. I did not test but this my idea of how this script is done.
if (.@product == 0) {
mes "I need you to gather some items";
mes "enter any items here";
next;
if (countitem("Jellopy") < 1) goto miss;
if (countitem("Clover") < 1) goto miss;
if (countitem("Fluff") < 1) goto miss;
delitem "Jellopy",1;
delitem "Clover",1;
delitem "Fluff",1;
mes "I see that you have all the items required!";
next;
mes "Please wait for at least 10 minutes in order for me to finish this item.";
set .@product,1;
initnpctimer;
close;
miss:
mes "Sorry, you dont have all the items required.";
close;
}
if (.@product == 1) {
mes "Please come after a few minutes";
close;
OnTime 600000:
mes "Here is your item!";
getitem "Item",1;
set .@product,0;
close;
If you are using the latest svn, you should read the changes regarding the luk status changes made by playtester.
You can find the information in rev 17201 and rev 17206.