-
Content Count
61 -
Joined
-
Last visited
-
Feedback
0%
Community Reputation
1 NeutralAbout HugoBoss

-
Rank
Heir
Contact Methods
-
Website URL
www.l2ignite.gr
Profile Information
-
Current Mood
Nerdy
-
Gender
Male
-
Country
Greece
-
Location
255.255.255.255
-
Interests
L2
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Help Forward Port
HugoBoss replied to DimiCxD3's question in Request Server Development Help [Greek]
Οτι ναναι είναι οι routers των παρόχων αν θέλεις να κάνεις καμια δουλειά παραπάνω.. Σε τέτοιες περιπτώσεις κοιτάμε δύο πράγματα όσον αφορά το router του παρόχου. Firewall και Port Forwarding. Αν δεν ξέρεις ακριβώς πως παίζει το firewall στο router του παρόχου, εγώ λέω κλείσ'το για αρχή και εφόσον φτάσεις σε μια κατάσταση που "παίζει", το κάνεις και πιο secure. Άρα πρώτα κλείσε το firewall του router. Μετά θες port forwarding. Θες να πεις στο router ό,τι έρχεται στο εξωτερικό interface (Internet) σε συγκεκριμένη θύρα να το στέλνει σε συγκεκριμένη -
I have ordered several services from him for marketing (thousands of euros) and he didn't scam me, we have good discussion every day for what i requested from him. He goes above and beyond to provide the best services money can buy. Regarding your donations panel, it seems there is no TOS so it's not prohibiting anyone from reselling it or using it however he sees fit. I strongly recommend @Pigasos-Dev and team Athena-Project for budget managment for your anyones upcoming server. They are professional marketing specialists. My two cents.
-
Here you go
-
HTML missing could be just that, html files missing. If there is a db thing, then taking regular backups should at least provide them a point in time that they could restore it. Worse case should be 1 day back or even 1 hour back. Depending on how often they took backups. If it's a files missing issue / corruption, then DB backup will not do anything. They would need to have the server files backed up somewhere. Server files don't change that often except if you do manual changes to the server code. I understand it's a java server so even though i haven't used l2j (yet) i guess you could
-
Help Avant-Garde No Quest Ai.obj [H5]
HugoBoss replied to LineageLover's question in Request Server Development Help [L2OFF]
Could you share with us your code? -
No i haven't. Have you tried it? Did you get any interesting results for lineage2?
-
If you mean sqli for the game itself, like doing something specific and triggering the exploit that might be pretty hard to find. if you mean sqli for the site of a X private server, like doing something specific on that site and triggering the exploit that should be easier to find but it's per case. Since you are practically attacking the site itself and it's logic then what you find on one site most probably will not work on another. Except if these sites have both been created by the same dev team. In both cases what you would be looking to find is an input that you
-
HugoBoss started following Client dev to migrate skills
-
Hello, Looking for a client developer who can import skills for me from one chronicle to another. PM me your price and a video of your similar work if available.
-
Hello, i am new to L2 Servers and i wanted to discuss security about html bypasses. So let's take as an example this class change bypass: <a action="bypass -h class_change?class_name=1">Warrior</a> Since this is present on client side, i am thinking that someone could replace the value of class_name to something else and exploit it. So my first questions is; Can someone manipulate the html on the client side? If yes, do you place code on the ai that checks again the response from the client if it is valid? Fo
-
Guide Creating (Or Importing) Weapons Using Unreal
HugoBoss replied to GLO's topic in Client Development Discussion
thx -
Guide Creating Costumes For Interlude
HugoBoss replied to GLO's topic in Client Development Discussion
ty -
Share Interlude interface (Damage on Screen Classic)
HugoBoss replied to Celestine's topic in Client Development Discussion
Hey @Celestine, Have you had the time to look into the following two? Critical message not showing Cannot move items from pet inventory Thanks! -
Help How to check if an item exists in users inventory
HugoBoss replied to HugoBoss's question in Request Server Development Help [L2OFF]
Hey, well after i restarted the processes everything works. So the spacing was ok. Thank you for your reply! -
Help How to check if an item exists in users inventory
HugoBoss replied to HugoBoss's question in Request Server Development Help [L2OFF]
Very insightful, thank you for taking the time! I will play a little bit with the spacing and report back! Thanks, Hugo -
Help How to check if an item exists in users inventory
HugoBoss replied to HugoBoss's question in Request Server Development Help [L2OFF]
It works that way! Thank you. Can you elaborate a bit on that, why it works that way and the difference between your proposed way and myself.OwnItemCount? Also, it would be better instead of using direct item id in the code, i place a paramter and use that instead, so: if(OwnItemCount(talker, 57) > 0) becomes: if(OwnItemCount(talker, myItemID) > 0) I have also created this parameter section: class myclass : citizen { parameter: int myItemID = 57; } But i get an error that this is an "abnormal" parameter when th