Jump to content

Myext64 - My New Opensource Gracia Final/epilogue Extender


Recommended Posts

If you're ever bored for something to do eressea, L2NPC from GF contains the fully functioning lexer/parser for NASC compilation, just doesn't have the init procedures/constructors

 

for compiling the hole ai.nasc you would need to do it with the built in compiler in npc.exe like someone already pointed out.

 

Ok, I'm going to try it.

 

I'm working with l2npc - extending it and calling code that invokes compilation instead of loading AI and spawning NPCs :)

 

So far:

  • Allocated some space for the lexer/parser instance
  • Called constructor @ 0x5C9980 on parser instance
  • Called function @ 0x5BE2B4 on parser instance with parameter L"citizen.nasc" (prepares input file, returns true which means ok)
  • Called function @ 0x419D84 with parameter "ai.obj" (creates output file)
  • Called function @ 0x419E40 with parameters sizeof(void*), 69, 79, 2, 2, 0 (writes header)
  • NOW I'M MISSING SOMETHING HERE
  • Called function @ 0x5D7F70 on parser instance (compiles the program, returns 0 which means ok)
  • Checked UINT32 @ 0x37886C0 (error count, is 0 now)
  • Now it would have been done if I didn't miss the step I'm still missing

... work in progress ...

 

If anyone has any additional info, let me know :)

 

If I manage to make functional compiler for GF, I'll make it part of MyExt64 (so it will be open source).

Edited by eressea
Link to comment
Share on other sites

Tell me what you can edit the AI? Decompile and compile?

 

You can either edit it manually in ai.obj (it's not easy but it works if you do it well) or decompile and recompile it.

At the moment there is probably only one REALLY working decompiler made by Sauron as mentioned here http://www.maxcheaters.com/topic/203399-myext64-my-new-opensource-gracia-finalepilogue-extender/page-12?do=findComment&comment=2609299 and one working compiler that can be bought from AdvExt.

I'm currently trying to implement the compiler too so it would be free for anyone...

Link to comment
Share on other sites

Got it! https://bitbucket.org/l2shrine/extender-public/commits/5292c28a57e8ee4b4eba641c4692be6afa203f46

Is this really what guys from AdvExt sell for $100 with key lock?

 

I'll try to add support for constants like PSTATE_IDLE soon...

 

Also I'll write new topic about the compiler soon (with how to use etc)

Edited by eressea
Link to comment
Share on other sites

Got it! https://bitbucket.org/l2shrine/extender-public/commits/5292c28a57e8ee4b4eba641c4692be6afa203f46

Is this really what guys from AdvExt sell for $100 with key lock?

 

I'll try to add support for constants like PSTATE_IDLE soon...

 

Also I'll write new topic about the compiler soon (with how to use etc)

It would be very good! And the script to file for epilog is impossible. And much more. Thank you for your efforts!

Link to comment
Share on other sites

So new gf bug! in ncsoft's infinite wisdom they aren't checking on private store setup whether the items you're trying to buy/sell are actually tradeable, so phx send up the object id of an untradeable in private store packet and boom you can now trade untradeables

Link to comment
Share on other sites

So new gf bug! in ncsoft's infinite wisdom they aren't checking on private store setup whether the items you're trying to buy/sell are actually tradeable, so phx send up the object id of an untradeable in private store packet and boom you can now trade untradeables

 

Thanks for info! Going to fix this when I have some time for it...

Link to comment
Share on other sites

another one i remember is agro bug, if you will target person who cast agro on you before he ends his cast, you will be able to change target once cast is finished even with debuff on - target lock will not work. Widely scripted back in times, still not fixed in most packs.

Link to comment
Share on other sites

  • 3 weeks later...

another one i remember is agro bug, if you will target person who cast agro on you before he ends his cast, you will be able to change target once cast is finished even with debuff on - target lock will not work. Widely scripted back in times, still not fixed in most packs.

 

I'm not able to reproduce it, maybe I'm doing it wrong. What should I do? :)

 

Also we've found another bug, this time it's race condition. When player logs in and something triggers character save to database before fame points are loaded (it's loaded asynchronously), there is very small chance of resetting the points to zero. I have it already fixed and will push the fix to bitbucket soon.

Link to comment
Share on other sites

I'm not able to reproduce it, maybe I'm doing it wrong. What should I do? :)

 

Also we've found another bug, this time it's race condition. When player logs in and something triggers character save to database before fame points are loaded (it's loaded asynchronously), there is very small chance of resetting the points to zero. I have it already fixed and will push the fix to bitbucket soon.

 

 

waiting for bitbucket update!

Link to comment
Share on other sites

waiting for bitbucket update!

 

Pushed fix for disappearing Fame points, showing offline trade player count in status window and another fix for hide skill (in fact I'm starting to hate that skill) https://bitbucket.org/l2shrine/extender-public/commits/all

Edited by eressea
Link to comment
Share on other sites

Pushed fix for disappearing Fame points, showing offline trade player count in status window and another fix for hide skill (in fact I'm starting to hate that skill) https://bitbucket.org/l2shrine/extender-public/commits/all

 

WOW! tks for update it, keep this amazing work up ! please :)

Link to comment
Share on other sites

Pushed fix for disappearing Fame points, showing offline trade player count in status window and another fix for hide skill (in fact I'm starting to hate that skill) https://bitbucket.org/l2shrine/extender-public/commits/all

 

Just a question, this extender is the same used into your live server?  https://l2shrine.com/

And tks for your amazing work

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now



×
×
  • Create New...