Jump to content

Recommended Posts

Posted (edited)

is possible and really easy (core / dp site) basicly only dp site :P just penalty addition, client part is easy/little hard

Are you stupid or so ? You can't make own grade client sidly, because its binded by engine side where count of images is stricrly described and where those images apply, like for all Draconic Weapons or S80 weapons, need to be applied same rule, that can be described only engine.dll sided , so dont talk bullshit.

Edited by LightFusion
Posted

Well, "new grade" as a new grade is easy indeed, from the server side. The thing that LightFusion is talking about is the icon next to weapon/armor name (for example S grade), I guess. That would be a problem. I'm right LF ? ;)

Posted (edited)

Are you stupid or so ? You can't make own grade client sidly, because its binded by engine side where count of images is stricrly described and where those images apply, like for all Draconic Weapons or S80 weapons, need to be applied same rule, that can be described only engine.dll sided , so dont talk bullshit.

everything is  possible , even people can fly, everything is possible, hackable , achievable

 

so you are stupid! If you got a mind you can use it and do it! you can make the new grade as a fake icon on the weapon icon (you dont need to use S or A icon) and create some core/dp methods + increase the level (if you use interlude) and the weapons/armors/jewls will listen only on Y level till X level if X level is < of Z level then char gets grade penalty..

 

oh shit... i am stupid :/

 

lets take an example:

 

Download R Grade weapons for Interlude

 

Open UTX 

 

Modify and put the fucking R icon inside the icon 

 

oh it is just a small detail that isnt shown like the other weapons..

 

SOOOO!!! You can achieve it with a tricky way

 

edit: now i saw sweets post, ok he can reply kindly next time, the topic author asks for a way! i replied with a way so please STUPID FUCKTARDS BE MORE KIND 

Edited by Akken
Posted

LightFusion is right... My client have errors when I try to run it with new icons.... I think I need to define CrystalType in client like in a server-side... But I dont know how and where... I tried unreal scripts, but there is only methods about this... so I think it will be in dll, but I dont know how to open it...

Posted (edited)

LightFusion is right... My client have errors when I try to run it with new icons.... I think I need to define CrystalType in client like in a server-side... But I dont know how and where... I tried unreal scripts, but there is only methods about this... so I think it will be in dll, but I dont know how to open it...

LOl forget about this srsly, its reverse engineering, unless you have enough skills in asam, you cant do anything ! simple because it require engine.dll editing, if you want look up in some engine.dll dissambled code in "C" and you'l se that all is binded.

You can change d grade to R grade or c to R, but you cant add new Grade.

Edited by LightFusion
Posted

i replied with a way

Your reply was like "halfway". It's not like with images you read it via utx. Each grade has it's own number, so it's probably like Light said. Honestly I have no idea how and blabla. You got the point. New grade as a new grade can be done, but how to display the new icon (grade) is another story.

Posted (edited)

ok you guys calm down

 

i tink you can make a new grade by converting the nograde or D if you don't use them in server

some editing in server and client and you can make for example D in to R or Z or watever you want

but is time consuming oz you have to edit all the ids that corelate with that grade say the D

and client texture and name

gl guys

 

initial i wanted to convert the D grade ss's(soulshots, spiritshots) in to a special power

example of an good idea i wat to try out

so take all D grade items,weapons,armors,ss's,etc and make them nograde

change the D grade to say Z, add a nice icon, aplly them a nice effect like i used here

make that the player can only activate if it has x item and it haves to be very rare, mabe can be made as a buff or only pasyvely activate if it has this x item

so the more x items haves the more effect can be applyed to the player or even multyple effects and stats

 

damn its hard to explain mabe ill make an demo for you guys when i have time coz is a nice idea i tink

but its hard coz you have to take and change carefylly every aspect of it to actualy work

 

the only problem will be the lag if player haves say 12 effects aon it, i mean the animation effect like the herro say the herro can active his effect animation 3x so it will have more aura but more cpu gpu intensive :P

Edited by puredemonsss

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..