I read them both already:/
And from them i got these questions: for example:
My workspace path--> c:\workspace
my l2server path --> c:\l2server
lets say i have this patch.txt :
Code: Select all
Index: data/scripts/handlers/usercommandhandlers/InstanceZone.java===================================================================--- data/scripts/handlers/usercommandhandlers/InstanceZone.java (revision 7669)+++ data/scripts/handlers/usercommandhandlers/InstanceZone.java (working copy)@@ -72,13 +72,22 @@ firstMessage = false; activeChar.sendPacket(new SystemMessage(SystemMessageId.INSTANCE_ZONE_TIME_LIMIT)); }- int hours = (int) (remainingTime / 3600);- int minutes = (int) ((remainingTime%3600) / 60);- SystemMessage sm = new SystemMessage(SystemMessageId.AVAILABLE_AFTER_S1_S2_HOURS_S3_MINUTES);- sm.addString(InstanceManager.getInstance().getInstanceIdName(instanceId));- sm.addNumber(hours);- sm.addNumber(minutes);- activeChar.sendPacket(sm);+ if (instanceId != 500000)+ {+ int hours = (int) (remainingTime / 3600);+ int minutes = (int) ((remainingTime%3600) / 60);+ SystemMessage sm = new SystemMessage(SystemMessageId.AVAILABLE_AFTER_S1_S2_HOURS_S3_MINUTES);+ sm.addString(InstanceManager.getInstance().getInstanceIdName(instanceId));+ sm.addNumber(hours);+ sm.addNumber(minutes);+ activeChar.sendPacket(sm);+ }+ else+ {+ int hours = (int) (remainingTime / 3600);+ int minutes = (int) ((remainingTime%3600) / 60);+ activeChar.sendMessage("Solo Instance will be available to re-use in " + hours + " hours and " + minutes + " minutes.");+ } } else InstanceManager.getInstance().deleteInstanceTime(activeChar.getObjectId(), instanceId);Index: data/scripts.cfg===================================================================--- data/scripts.cfg (revision 7669)+++ data/scripts.cfg (working copy)@@ -207,6 +207,7 @@ village_master/orc_occupation_change_2/__init__.py # Instance Dungeons Section+instances/Bloodshed/__init__.py instances/DarkCloudMansion/DarkCloudMansion.java instances/CrystalCaverns/CrystalCaverns.java instances/Kamaloka/Kamaloka.java
I open eclipse, right-click in the l2_server_BETA / team / apply patch / browse / i choose the patch.txt / next /
***Here i need to choose wether to apply the patch in the workspace root , or in a specified file/folder/project, and im not sure what i must choose there and what to to next***
#####
Regarding the synchronization with the repositories, i tried it but it says that i didnt change anything. and its true, all my changes are done in the c:\l2server, i havent touched workspace apart from taking the 2 .zip files to make the server folder.
could u assist here mate?