eressea Posted January 5, 2017 Author Posted January 5, 2017 (edited) 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 January 5, 2017 by eressea Quote
webdes27 Posted January 6, 2017 Posted January 6, 2017 Tell me what you can edit the AI? Decompile and compile? Quote
eressea Posted January 6, 2017 Author Posted January 6, 2017 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... Quote
eressea Posted January 6, 2017 Author Posted January 6, 2017 (edited) 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 January 6, 2017 by eressea Quote
webdes27 Posted January 7, 2017 Posted January 7, 2017 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! Quote
Anarchy Posted January 9, 2017 Posted January 9, 2017 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 Quote
eressea Posted January 9, 2017 Author Posted January 9, 2017 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... Quote
eressea Posted January 10, 2017 Author Posted January 10, 2017 Here's the fix https://bitbucket.org/l2shrine/extender-public/commits/c3a4aeaeff64817c68a114fc0e80898b7e6aa065 Quote
AlmostGood Posted January 10, 2017 Posted January 10, 2017 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. Quote
eressea Posted January 26, 2017 Author Posted January 26, 2017 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. Quote
AstroGG Posted January 26, 2017 Posted January 26, 2017 I'm good with java but I don't know an ounce of c++. I may try to give this a go, it looks like a really good project to learn from. kudos to you! Quote
Erinia Posted January 26, 2017 Posted January 26, 2017 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! Quote
eressea Posted January 26, 2017 Author Posted January 26, 2017 (edited) 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 January 26, 2017 by eressea Quote
Erinia Posted January 28, 2017 Posted January 28, 2017 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 :) Quote
ElitePlayer Posted January 28, 2017 Posted January 28, 2017 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 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.