-
Posts
1,403 -
Credits
0 -
Joined
-
Last visited
-
Days Won
32 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by melron
-
if i wanted to report someone who scammed me, i would probably paste THE WHOLE conversation i would post the files that i received What the fuck are you doing guys? And again, what the fuck are you doing guys? How you can take an action without proofs? I can say that sinister is gay and maxtor is 65 years old grandma. WTF? post the damn conversation and post the files you received mr topic owner and if its necessary record a video while you are clicking 'show in folder' from the skype file. The thing that someone connected to the victim's pc with a program like TV or Anydesk and 'see' the files has nothing to do with that case because SIMPLY he can edit the content and apper what he want and how he want. Choices are not always good and we have to understand our mistakes. just think the case from the start and im waiting the sinister with gold name. Have fun
-
Discussion Server Side HTML Size
melron replied to xdem's topic in Server Development Discussion [L2J]
Nice one -
The code is probably not updated when elfo mentioned some changes ,so the system tries to load a particular class and doesn't found the requested class in classpath @StaticX whats the name of the files inside of net.sf.l2j.donation.packages ? if they are like BronzePackage,SilverPackage etc then change this line (inside of DonationStats java file) final String category = o.getAttributes().getNamedItem("category").getNodeValue(); to final String category = o.getAttributes().getNamedItem("category").getNodeValue() + "Package"; I forgot to edit that part . updated
-
Communication is the biggest problem
-
Help help distance spawn
melron replied to tazerman2's question in Request Server Development Help [L2J]
i followed @Nightw0lf's post while i ignored the moving part and modified @Kara`'s code since acis got similar code. so here you are... https://pastebin.com/vgeMcJX7 -
Help INSTANT_JUMP [ACIS REV360]
melron replied to miscer7's question in Request Server Development Help [L2J]
since is client issue , you should ask help from client section. regarding the code, you know is wrong right? The code is 'teleporting' the player to the victim but at the exactly same location. shadow step is not wokring like that. shadow step is teleporting the caster to the back of the victim not at the same location, also target cancel is possible if i remember well -
if the code is bad by itself then you are right. but if the code is ok from him and tested and what ever, then the rest is about you,smartguard,l2jserver.
-
you dont have to prove something to me im just saying my opinion , im not the judge. to be cleared. if the same code that gave you is working for me while i got smart guard and not working for you is not his fault. did it was clear enough?
-
look, i dont know if a code is missing or anything like that. im talking about the sg case. He got a request from you to do something that contains the hwid from smart guard right? He made the code that includes this thing. He finished , he got the money. Its your responsibility to check your pack if everything is missing not his It is. smart guard metho is wrong and its 50% smart guard's problem and 50% yours. You could check that by your own I wont even answer to that idiot quote So if you request from me lets say an event with raid bosses, working on it for 2 days and after that me + you realize that your pack is missing the spawn manager is my fault?
-
thats his job lol. do you think by telling to someone do X,Y,Z things and then "you know something? i dont want them. remove them and give me back my money" . Really? what about his time? what about everything he did for you? You want him to contact with the smart guard for you? what? for what? its your responsibility if something is broken dude... He got a request from you, he did that and get paid. now if your pack missing things or an extra thing is missing another thing its not his business. no he wont check everything else than his code debug because he made a deal for that and nothing else. if the price was increased for that purpose then yeah he could do that.
-
So, if you will get your money back, fix the issue with smart guard. you have the fully working code for free . smart guy. Someone spent his hours for the thing you need, he must get paid. There was a problem with the smart guard? why the dev should care of it? open a ticket to them . Its like you open a case in l2jserver about the smartguard problem wtf? get real lol
-
as reborn said, it requires client modification. You have to add the new grade in tooltip class of interface.u file of your system folder . remake the code so it can handle the new grade and then you have to parse the new item grade example 6. or you can just edit the D grade to your S80 for example.
-
Τον σουρώνεις τον φιδέ;
-
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
as u can see the 1st value is correct. so its from xmls as u said anyway i learned what i wanted so the xml values are not the main goal :P thanks again -
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
i don't but without testing that i cant be sure :D -
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
y i guess u're right @Kara` no difference -
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
i guess not. if the pic showing 42.5 and my message is 37.4 , then the 42.5 should be the correct value and actually means that the core side calc is wrong? -
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
https://pastebin.com/GWamP2fY -
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
42.5 will be 37.4 for example -
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
Well i dont know what im doing wrong here (im talking about the values) also it cuts higher values too... maybe i made i mistake in my methods ( i didnt use your code cause i got different sources ). but yeah its working without client modification .thanks for mentioned that p.s its 2 images in 1 -
Help Augument Show on trade
melron replied to Ugleethyn's question in Request Server Development Help [L2J]
it requires client modification to get all those stats. you can add a check while adding items to the trade list and if its augmented and have skill, send the skill name as a message -
frozen is using configs for max sizes if i remember well edit. yea /** The Constant SHIFT_BY. */ public static final int SHIFT_BY = 12; /** Map dimensions. */ public static final int MAP_MIN_X = Config.WORLD_SIZE_MIN_X; // -131072 /** The Constant MAP_MAX_X. */ public static final int MAP_MAX_X = Config.WORLD_SIZE_MAX_X; // 228608 /** The Constant MAP_MIN_Y. */ public static final int MAP_MIN_Y = Config.WORLD_SIZE_MIN_Y; // -262144 /** The Constant MAP_MAX_Y. */ public static final int MAP_MAX_Y = Config.WORLD_SIZE_MAX_Y; // 262144 /** calculated offset used so top left region is 0,0. */ public static final int OFFSET_X = Math.abs(MAP_MIN_X >> SHIFT_BY); /** The Constant OFFSET_Y. */ public static final int OFFSET_Y = Math.abs(MAP_MIN_Y >> SHIFT_BY); /** number of regions. */ private static final int REGIONS_X = (MAP_MAX_X >> SHIFT_BY) + OFFSET_X; /** The Constant REGIONS_Y. */ private static final int REGIONS_Y = (MAP_MAX_Y >> SHIFT_BY) + OFFSET_Y;
-
Σκέφτεσαι μόνο τον εαυτό σου. Να πάρεις τον γείτονα ρε μαλάκα , γιατί δεν τον παίρνεις? Ζητάει τα διπλά? Γιατί άραγε? Γιατί άτομα σαν και εσένα δίνουν τις δουλειές σε ξένους που σου ζητάνε 10 ευρώ στο 8ωρο ε? Μάθε όμως οτι αυτός ο Χ,Ψ ξένος μένει με αλλα 8 άτομα στο ίδιο δωμάτιο και δεν πληρώνει αυτά που πληρώνει ο Έλληνας. Μάθε οτι σπάνια θα βρείς ξένο με παιδιά ενώ ο Έλληνας έχει ίσως και 2 και θέλει λίγα παραπάνω για να ταίσει. Μάθε οτι ο ξένος στην χώρα του πολύ πιθανόν να έπαιρνε 1 ευρώ την ώρα και τώρα τα 15 του φαίνονται σαν να σου δίνουν 50ρικο εσένα ( που φυσικά εαν δεν εχει τους φόρους και όλες τις μαλακίες ειναι καθαρά τσέπη και τα 50 ) . Μάθε οτι ο Έλληνας έχει μια γαμημένη αξιοπρέπεια και θέλει αυτά που του αξίζουν . Εαν μάθεις στα σκατά θα πεθάνεις στα σκατά φίλε. Όσο για την καταγωγή..... Πόση ώρα το σκέφτηκες αυτό που είπες?