Make sure fluxcp is located in www (Not conflict with others sites)
Then make sure config files is setup correctly.
And before re-install again please remove cp_ from database if had any.
Do you use this in special events? If so just made npc that use mob sprites and made it movable, Then when players tap it call function to kill player.
Otherwise I think rAthena had some special skill that one hit kill (I can't remember the name).
mes "ID";
input .@inputId$;
next;
mes "Old PW";
input .@inputPw$;
next;
query_sql ("SELECT `account_id` FROM `login` WHERE `userid`='"+.@inputId$+"' AND `user_pass`='"+.@inputPw$+"'", .@sum);
if(.@sum<=0){
mes "Incorrect ID or PW";
close;
}
next;
mes "New PW";
input .@inputPw$;
if(.@inputPw$!=""){
query_sql "UPDATE `login` SET `user_pass` = '"+.@inputPw$+"' WHERE `userid` = '"+.@inputId$+"'";
mes "Done";
close;
}
mes "Canceled";
end;
This is simple password change scripts. you can adapt it.
Do you mean official achievements right?
If so you need to do custom achievements and handle it by achievementadd, achievementcomplete function.
If not you can custom in many ways like bring 50 players skull, OnPCDieEvent:, etc...
Me and my friends doing checking missing/wrong items at free time.
I had doing about 2-3 PR previously. Currently PR: https://github.com/rathena/rathena/pull/4877
If you are know something is not same as kRO you can do and send PR to rAthena too.