i've tried web archive before i posted the question, and i found it incomplete. I'd really like to get full site download.
But thanks for the suggestion anyway!
Hey guys,
i wrote simple a Symfony 3 Drop and Spoil application for our L2OFF L2 Shrine server, and i'd like to share it.
It can be easily used together with our MyExt64 extender, as extender can generate drop / spoil data from it's files.
You can find it on our bitbucket https://bitbucket.org/l2shrine/dropspoil. and you can have a look at it here https://dropspoil.l2shrine.com/.
Cheers.
AFAICT you have to specify all the ids and check them separately, something like this:
In CREATED handler of the NPC:
myself.int_list.Add( ID1 );
myself.int_list.Add( ID2 );
myself.int_list.Add( ID3 );
myself.int_list.Add( ID3 );
...
And then in TALKED handler loop trough the int_list and remove all the items:
for( i0 = 0; i0 <= myself.int_list.GetSize(); ++i0 ) {
i1 = myself.int_list.Get( i0 );
if( OwnItemCount( talker, i1 ) > 0 ) {
DeleteItem1( talker, i1 );
... // do other stuff
}
}
Hope this helps.
Hi, if i am not mistaken, restart_point_begin where players are teleported after they die, no? I want users to be teleported to town when for example some doors in game closes, some npc dies, etc ..