-
Posts
2,865 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Flash™
-
Teleutea prospa8eia
Flash™ replied to Traffic*'s question in Request Server Development Help [Greek]
koita file mporo na sou doso link gia pack alla to 8ema den einai full compile to 8ema einai na pareis ena monos sou kai siga siga na ma8eis epano tou.. :P l2 core pack ti 8a exeis ola ta bug tou server tou axaxa kai to dinei 500 eyro ayton ton bug server -
file eisai se la8os section kane ena search 8a breis pos alios kane sto help post na se boi8isoume oxi se la8os section post :P
-
Teleutea prospa8eia
Flash™ replied to Traffic*'s question in Request Server Development Help [Greek]
file pes mas ti akribos pack 8eleis na mporesoume na broume exeis . kai kalos ir8es sto forum -
apo oti blepo kai i 2 sas den exete dei oti eistai se Έλληνες Developers kai dn einai tis L2J-Archid arxiko kataskebasmo ton exei kanei i l2dot alla giati ekleise to pira apo tin l2j-archid..
-
hi exo dei se polous server oti exoun akoma to party duel bug pou otan kaneis party duel mpeneis mesa stin olympiad otan exei kai mporeis na tous fate gi ayto sas dino edo to compile na to fix :P Index: /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java =================================================================== --- /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java (revision 352) +++ /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java (revision 353) @@ -1309,5 +1309,8 @@ public static boolean L2JMOD_WEDDING_FORMALWEAR; public static int L2JMOD_WEDDING_DIVORCE_COSTS; - + public static int DUEL_SPAWN_X; + public static int DUEL_SPAWN_Y; + public static int DUEL_SPAWN_Z; + // ******************************************************************************************* public static void loadAMConfig() @@ -1408,5 +1411,7 @@ L2JMOD_WEDDING_FORMALWEAR = Boolean.parseBoolean(L2JArchidModSettings.getProperty("WeddingFormalWear", "True")); L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(L2JArchidModSettings.getProperty("WeddingDivorceCosts", "20")); - + DUEL_SPAWN_X = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnX", "149319")); + DUEL_SPAWN_Y = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnY", "46710")); + DUEL_SPAWN_Z = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnZ", "-3413")); TVT_EVENT_ENABLED = Boolean.parseBoolean(L2JArchidModSettings.getProperty("TvTEventEnabled", "false")); TVT_EVENT_INTERVAL = L2JArchidModSettings.getProperty("TvTEventInterval", "20:00").split(","); Index: /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java =================================================================== --- /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java (revision 262) +++ /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java (revision 353) @@ -23,5 +23,5 @@ import javolution.util.FastList; - +import com.l2jarchid.Config; import com.l2jarchid.gameserver.ThreadPoolManager; import com.l2jarchid.gameserver.ai.CtrlIntention; @@ -228,9 +228,11 @@ { // players need to be teleportet first - //TODO: stadia manager needs a function to return an unused stadium for duels + // TODO: stadia manager needs a function to return an unused stadium for duels // currently only teleports to the same stadium - _duel.teleportPlayers(-102495, -209023, -3326); - - // give players 20 seconds to complete teleport and get ready (its ought to be 30 on offical..) + + _duel.teleportPlayers(Config.DUEL_SPAWN_X, Config.DUEL_SPAWN_Y, Config.DUEL_SPAWN_Z); + + + // give players 20 seconds to complete teleport and get ready (its ought to be 30 on official..) ThreadPoolManager.getInstance().scheduleGeneral(this, 20000); } Index: /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties =================================================================== --- /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties (revision 315) +++ /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties (revision 353) @@ -348,2 +348,13 @@ #TvTShowCredits = True + +#================================================# +# /!\ Party Duel /!\ # +#================================================# +# Default Coordinates : Coliseum +# Party Duel Spawn X +PartyDuelSpawnX = 149319 +# Party Duel Spawn Y +PartyDuelSpawnY = 46710 +# Party Duel Spawn Z +PartyDuelSpawnZ = -3413 http://trac.assembla.com/L2J-Archid/changeset/353
-
file 1. eisai se la8os section 2. ama 8eleis na mpeis mono esu apo to spiti sou na kaneis test 8a baleis oles tis ip mesa 127.0.0.1 kai esu mono mporeis na kaneis login
-
hi i found a bug in many server with the party duel which when you do it it teleport you inside olympiad and you can kill the others in olympiad games.i checked it out and here how to fix it Index: /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java =================================================================== --- /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java (revision 352) +++ /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java (revision 353) @@ -1309,5 +1309,8 @@ public static boolean L2JMOD_WEDDING_FORMALWEAR; public static int L2JMOD_WEDDING_DIVORCE_COSTS; - + public static int DUEL_SPAWN_X; + public static int DUEL_SPAWN_Y; + public static int DUEL_SPAWN_Z; + // ******************************************************************************************* public static void loadAMConfig() @@ -1408,5 +1411,7 @@ L2JMOD_WEDDING_FORMALWEAR = Boolean.parseBoolean(L2JArchidModSettings.getProperty("WeddingFormalWear", "True")); L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(L2JArchidModSettings.getProperty("WeddingDivorceCosts", "20")); - + DUEL_SPAWN_X = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnX", "149319")); + DUEL_SPAWN_Y = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnY", "46710")); + DUEL_SPAWN_Z = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnZ", "-3413")); TVT_EVENT_ENABLED = Boolean.parseBoolean(L2JArchidModSettings.getProperty("TvTEventEnabled", "false")); TVT_EVENT_INTERVAL = L2JArchidModSettings.getProperty("TvTEventInterval", "20:00").split(","); Index: /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java =================================================================== --- /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java (revision 262) +++ /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java (revision 353) @@ -23,5 +23,5 @@ import javolution.util.FastList; - +import com.l2jarchid.Config; import com.l2jarchid.gameserver.ThreadPoolManager; import com.l2jarchid.gameserver.ai.CtrlIntention; @@ -228,9 +228,11 @@ { // players need to be teleportet first - //TODO: stadia manager needs a function to return an unused stadium for duels + // TODO: stadia manager needs a function to return an unused stadium for duels // currently only teleports to the same stadium - _duel.teleportPlayers(-102495, -209023, -3326); - - // give players 20 seconds to complete teleport and get ready (its ought to be 30 on offical..) + + _duel.teleportPlayers(Config.DUEL_SPAWN_X, Config.DUEL_SPAWN_Y, Config.DUEL_SPAWN_Z); + + + // give players 20 seconds to complete teleport and get ready (its ought to be 30 on official..) ThreadPoolManager.getInstance().scheduleGeneral(this, 20000); } Index: /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties =================================================================== --- /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties (revision 315) +++ /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties (revision 353) @@ -348,2 +348,13 @@ #TvTShowCredits = True + +#================================================# +# /!\ Party Duel /!\ # +#================================================# +# Default Coordinates : Coliseum +# Party Duel Spawn X +PartyDuelSpawnX = 149319 +# Party Duel Spawn Y +PartyDuelSpawnY = 46710 +# Party Duel Spawn Z +PartyDuelSpawnZ = -3413 http://trac.assembla.com/L2J-Archid/changeset/353
-
[HELP]Pws to allazw afto+(eikona)
Flash™ replied to +cs.tribal's question in Request Server Development Help [Greek]
file bres apo to system sou to systemmsg-e.dat kai balo se ligo na to katebaso na sou to ftia3o tora -
ama kanei delete ola ta teleport prepei me ena tropo na perasei ta normal telepost giati oute i normal gatekeeper den 8a douleyei den to exeis skefti ayto.. file kanete delete to telepost opos sou leei o nosti meta pigen sta sql pou exoun ta tools kai 3anaperna to teleport meta mpes mesa dokimase ama douleyoun ta normal teleport kai meta perna mia dikoia sou gatekeeper pare kai tin gatekeeper apo edo kai pernatin mesa http://www.maxcheaters.com/forum/index.php?topic=52328.0 ama exei problima me to sql tis gatekeeper pes to mou na sto ftia3o na pernaei. to sql gia ta teleport perna se oti pack kai na einai..
-
to 8ema einai oti ama den mporei na kanei teleport simenei oti kati exei ginei la8os i to sql pou exei perasei to telepost den einai idia me ayta pou exei mesa sto html to id i kati exoun kanei la8o gi ayto einai sosto giati ama exei ginei la8os kati se kapoies perioxes tote mporei na to fix etsi kai na kanei ta dika tou custom spawn :P kai to 8ema den ma exeis dosei tin gatekeeper na doume poia einai mono leei oti exei problima
-
aplos file kaneis apo ayto edo to simio diagrafei </skill> <skill id="2303" levels="1" name="Hair Style Change Potion"> <set name="target" val="TARGET_NONE"/> <set name="skillType" val="NOTDONE"/> <set name="operateType" val="OP_ACTIVE"/> <set name="castRange" val="-1"/> <for> </for> sorry diko mou la8os
-
L2J Free and l2j :P
-
akou file ama 8eleis mporeis na kaneis kati allo na pas edo \gameserver\data\stats\skills na breis to skill pou 8eleis na bgaleis kai na to kaneis etsi px edo einai ok </skill> <skill id="2303" levels="1" name="Hair Style Change Potion"> <set name="target" val="TARGET_NONE"/> <set name="skillType" val="NOTDONE"/> <set name="operateType" val="OP_ACTIVE"/> <set name="castRange" val="-1"/> <for> </for> </skill> <==== apo edo mexri kato to kaneis delete <skill id="2304" levels="1" name="Hair Style Change Potion"> <set name="target" val="TARGET_NONE"/> <set name="skillType" val="NOTDONE"/> <set name="operateType" val="OP_ACTIVE"/> <set name="castRange" val="-1"/> <for> </for> i mporeis na kaneis to allo anti na ta kaneis delete ta skill na ta kaneis se passive 8a sou di3o kai ayto ton tropo ama 8eleis na to kaneis <skill id="2303" levels="1" name="Hair Style Change Potion"> <set name="target" val="TARGET_NONE"/> <set name="skillType" val="NOTDONE"/> <set name="operateType" val="OP_ACTIVE"/> <==== ayto edo peirazeis <set name="castRange" val="-1"/> <for> kai to kaneis etsi <set name="operateType" val="OP_PASSIVE"/>
-
ok file pisteyo na eisai ok oti allo problima exeis kanto post na se boi8iso
-
[GUIDE]POS ANOIGETE 2 SERVER STO IDIO LOGIN
Flash™ replied to A-error's topic in Server Development Discussion [Greek]
polu oraio post file eyxaristo -
file aytes tis meres ftiaxno new site 8a to kano ena polu kalitero
-
[Share]Pos kanete ena Teleport Custom
Flash™ replied to Flash™'s topic in Server Development Discussion [Greek]
eyxastisto file 8a bro kai alla pragmata kai 8a ta prosteso kai pistobo na einai kalitero apo ta alla post pou exoun ginei -
[Share]Gracia Final Pack By MaCe
Flash™ replied to Grim.'s topic in Server Development Discussion [Greek]
oraia ma fou to exeis dokimasei grapsei ti exeis fix ti exeis perasei mesa ston server na 3eroun ta paidia -
[Share]Gracia Final Pack By MaCe
Flash™ replied to Grim.'s topic in Server Development Discussion [Greek]
ektos apo tis photo bale kai ti exeis fix giati na 3eroun ta paidia ti 8a exoun mesa sto pack tous exeis balei ena link kai les oti exei problima i Navicat kai ta paidia pou 3eroun oti douleyei to pack server kai den exei problima ma fou esu den to exeis dokoimasei prota -
[Share] My VESPER Set Random Stats! [ST2]
Flash™ replied to DeathCrip's topic in Client Development Discussion
very nice share man thanks -
[PROBLEM]Vesper Enchant error...
Flash™ replied to +cs.tribal's question in Request Server Development Help [Greek]
file einai polu noris na ftia3ete gracia final exei polla elatoma akoma ftiaxnoune ama perimenete tis last verion kai kapoios kanei ena pack gracia tote 8a eisai ok.. ti na sou po apo oti exo paratirisei exei polla problima.. -
file oriste ena post pou pisteyo na se boi8isei http://www.maxcheaters.com/forum/index.php?topic=57990.msg429465#msg429465
-
file psa3e mesa sta config sou kai 8a breis ayto edo #--------------------------------------------------------------- # Faction Good vs Evil #--------------------------------------------------------------- # Enable faction Good vs Evil # GvE Engine its a Faction engine called Good Vs Evil # GvE cant work with the Fun engines TvT and Vip. # When Gve Engine is Activated the server is not in normal mode and # if you try somethink like use a normal faction Example (Duel between factions) offcourse will not work. # Note : When you Enable this YOU MUST KNOW WHAT YOU DOING. #--------------------------------------------------------------- #True Enable GvE , False disables GvE. EnableFaction = False # Config if Good and Evil have Base. It's there where they respawn after : Restart - Use all type of Scroll of Escape - Respawn After Death ? # Coordinates of good faction base GoodBaseX = -84318 GoodBaseY = 244579 GoodBaseZ = -3730 # Coordinates of evil faction base EvilBaseX = -44836 EvilBaseY = -112524 EvilBaseZ = -235 #Good Alternative Team Name. NameTeamGood = Good #Evil Alternative Team Name. NameTeamEvil = Evil #Name color for Good. ColorNameGood = 00FF00 #Name color for Evil. ColorNameEvil = FF0000 #Players will win automatic adena for pvp reward if they kill an enemy Faction. PlayerGetAdenaByPvP = True #How many adena get by PvP AmmountAdenaGetByPvP = 1 kai min paneis Preconfigured pack kai apo oti 8umamai tou themental to pack einai polu palio kai exei polla bug