Jump to content

'Baggos'

Legendary Member
  • Posts

    3,875
  • Joined

  • Last visited

  • Days Won

    28
  • Feedback

    100%

Everything posted by 'Baggos'

  1. Εγώ καλά είμαι... Αλλά και πάλι δεν φτάνει με τίποτα για Server φίλε..
  2. Greek connection is too bad.. This guy is from Greece... My connection... with 0.89Mbit/s upload. There is not big difference with someone else. Except if you have VDSL... So, you understand what i mean..
  3. Καλησπέρα.. Εάν σηκώσεις server απ'το σπίτι, δε θα φτάσεις ούτε τα 60 άτομα.. Δεν έχουμε καλές γραμμές upload(που έχει σημασία για τον server) ή download εδώ Ελλάδα.. Αν ψάξεις στο Internet, θα βρεις φώτο ή video από OVH (VPS) με τι γραμμές τρέχουν... Μιλάμε για καμία σχέση με αυτά που έχουμε εδώ! Τα 100Mbps που λες, δεν έχουν σχέση για εδώ Ελλάδα... Σημασία έχει πόσο σου προσφέρει... Έχεις φτάσει ποτέ πάνω από 20? Άσε που μέχρι 24άρες γραμμές υπάρχουν, εκτός αν έχεις VDSL. Αλλά και πάλι... Δεν αρκεί με τίποτα..
  4. 1)Doesn't matter to wait to see a episode here.. somewhat pointless. 2)The same and here.. 3)very lie here... haha 4)Interesting and very action... I'll add it on my list.. 5) Interestingly and that.. although a bit "fun" here.. but looks nice.. Thank you mate... :)
  5. Pretty good and the 3... Interestingly, especially the first... Beauty and the beast I have seen and this... Τhe girl is actor from Smallville. :P
  6. interesting... I will give a try.. I like this series, but i wait for the full episodes of season.. Thank you Stacy.. btw, chuck is not my style... I have seen and the lost.
  7. This need moved here.
  8. Καλησπέρα φίλε. Είσαι σε λάθος section αν θες για client side.. Πήγαινε στο [Request] Client Dev Help γι'αυτό το θέμα...
  9. I have seen or even i see and the Walking dead... Thanks anyway.. :P Nothing special.. just fun i think.. I have seen 3 season from this.... No more.. I don't like.. :P I want something like Fantasy or action... Extreme..
  10. There is many people searching for something like this.. Good job mate..
  11. Hello guys... I want your opinion about Tv Series. I'm looking for a good tv serie to see.. Except from: The Vampire Diaries The Flash The Originals Vikings Arrow Game of Thrones Merlin Smallville Kyle Xy Marvels Teen Wolf Supernatutal True Blood Hercules: The Legendary Journeys Walking Dead Lost Beauty and beast Heroes I have seen or even i see all these.. I'm searching such series like the above.. Thank for your time..
  12. καλησπέρες αλάνια..
  13. Παίρνεις τα αρχεία του δεύτερου gameserver που θες (χωρίς το login, δεν χρειάζεται το login). Στο login μόνο τρέξε το RegisterGameServer και πέτα το hexid στα config. (Ενώ κάνεις το παρακάτω βήμα για "Install δεύτερης database"). Κάνεις Install την δεύτερη database. Π.χ νέα database στην navicat με όνομα l2jdb2 Μετά, πηγαίνεις να φτιάξεις τα config σου, και όπου port 7777 την κάνεις 7778. Επίσης χρειάζεται να ανοίξεις μία νέα port στο ρούτερ σου, την 7778. Αν είναι άλλο client, τότε σε εκείνο το system, θα βάλεις την port 7778. Δε θυμάμαι να χρειάζεται και κάτι άλλο..
  14. Καλησπέρες αλάνια..
  15. Για frozen δεν το θες? Έχεις πειράξει τίποτα μέσα από το AutoVoteRewardHandler.java εκτός από σήμερα?
  16. Put this CSPAWN_X = Integer.parseInt(altSettings.getProperty("SpawnX", "your choose")); CSPAWN_Y = Integer.parseInt(altSettings.getProperty("SpawnY", "your choose")); CSPAWN_Z = Integer.parseInt(altSettings.getProperty("SpawnZ", "your choose")); and don't forget to change the "your choose".
  17. Καλησπέρες μάγκες...
  18. l2jfrozen timeline "Added L2Network system". Με πράσινο προσθέτεις κάτι, με κόκκινο το αφερείς...
  19. Everywhere you want... Juts change later the "altsettings" if you add the code in another property.. or under from public static boolean ALT_PETS_STATS_BONUS; + public static boolean CUSTOM_RESPAWN; + public static int CSPAWN_X; + public static int CSPAWN_Y; + public static int CSPAWN_Z; ALT_PETS_STATS_BONUS = Boolean.parseBoolean(altSettings.getProperty("AltPetsStatsBonus", "True")); + CUSTOM_RESPAWN = Boolean.parseBoolean(altSettings.getProperty("RespawnAfterDeath", "false")); + CSPAWN_X = Double.parseDouble(altSettings.getProperty("SpawnX", "your choose")); + CSPAWN_Y = Double.parseDouble(altSettings.getProperty("SpawnY", "your choose")); + CSPAWN_Z = Double.parseDouble(altSettings.getProperty("SpawnZ", "your choose")); Don't forget to change the "your choose" altsettings.property AltPetsStatsBonus = True + +# Custom Respawn When You Die. +RespawnAfterDeath = false +SpawnX = your choose +SpawnY = your choose +SpawnZ = your choose Don't forget to change the "your choose"
  20. AllowClassMasters = False As I remember when I changed this before some years. You must to not follow an answer from someone else, but must think and the any eventuality.
  21. that's true... i forgot the points with if is false..
  22. Give a try here... network/clientpackets/RequestRestartPoint.java loc = new Location(17836, 170178, -3507);// Floran Village break; } - loc = MapRegionTable.getInstance().getTeleToLocation(activeChar, MapRegionTable.TeleportWhereType.Town); - break; - } + if (Config.CUSTOM_RESPAWN) + loc = new Location(Config.CSPAWN_X, Config.CSPAWN_Y, Config.CSPAWN_Z); + else + loc = MapRegionTable.getInstance().getTeleToLocation(activeChar, MapRegionTable.TeleportWhereType.Town); + break; + } Config.java public static boolean CUSTOM_RESPAWN; public static int CSPAWN_X; public static int CSPAWN_Y; public static int CSPAWN_Z; CUSTOM_RESPAWN = Boolean.parseBoolean(altSettings.getProperty("RespawnAfterDeath", "false")); CSPAWN_X = Double.parseDouble(altSettings.getProperty("SpawnX", "your choose")); CSPAWN_Y = Double.parseDouble(altSettings.getProperty("SpawnY", "your choose")); CSPAWN_Z = Double.parseDouble(altSettings.getProperty("SpawnZ", "your choose")); config.property # Custom Respawn When You Die. RespawnAfterDeath = false SpawnX = your choose SpawnY = your choose SpawnZ = your choose
  23. altsettings # ----------------------- # Class Master - # ----------------------- # Allow Change Class with ClassMaster AllowClassMasters = False Try to make the false --> true
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock