diff --git a/game/config/extra/elemental/auction.ini b/game/config/extra/elemental/auction.ini new file mode 100644 index 00000000..d2ea1820 --- /dev/null +++ b/game/config/extra/elemental/auction.ini @@ -0,0 +1,11 @@ +# --------------------------------------------------------------------------- +# Auction House Settings +# --------------------------------------------------------------------------- + +# If its enabled, Auction House can only be used when inside Peace Zone +AuctionHouseOnlyPeaceZone = True + +# Fee charged when creating a new auction in the Auction House +# This is charged when creating a new auction only, and the final value is calculated: Count x Sale Price * Days * AuctionHouseSaleFee +# Default 0.5% +AuctionHouseSaleFee = 0.5 \ No newline at end of file diff --git a/game/config/main/L2JMods.ini b/game/config/main/L2JMods.ini index a49b75a7..8b53374b 100644 --- a/game/config/main/L2JMods.ini +++ b/game/config/main/L2JMods.ini @@ -165,6 +165,17 @@ DisplayServerTime = True # .dress-hatpage|.undressme-hat DressMe = True +# --------------------------------------------------------------------------- +# Auto Potion System +# --------------------------------------------------------------------------- + + +# This option will enable Auto Potion System +# Caution: When deactivating change the handler in items 728 and 5592. Switch to ItemSkills + +AutoPotionEnabled = True + + # --------------------------------------------------------------------------- # Welcome message diff --git a/game/config/main/PVP.ini b/game/config/main/PVP.ini index b1d3b065..8379f9b5 100644 --- a/game/config/main/PVP.ini +++ b/game/config/main/PVP.ini @@ -37,8 +37,8 @@ AwardPKKillPVPPoint = True # How much time one stays in PvP mode after hitting an innocent (in ms) # Default: 120000 -PvPVsNormalTime = 30000 +PvPVsNormalTime = 120000 # Length one stays in PvP mode after hitting a purple player (in ms) # Default: 60000 -PvPVsPvPTime = 10000 \ No newline at end of file +PvPVsPvPTime = 60000 \ No newline at end of file diff --git a/game/config/network/Server - localhost.ini b/game/config/network/Server - localhost.ini new file mode 100644 index 00000000..bc792cf5 --- /dev/null +++ b/game/config/network/Server - localhost.ini @@ -0,0 +1,124 @@ +# --------------------------------------------------------------------------- +# Game Server Settings +# --------------------------------------------------------------------------- +# This is the server configuration file. Here you can set up the connection information for your server. +# This was written with the assumption that you are behind a router. +# Dumbed Down Definitions... +# LAN (LOCAL area network) - typically consists of computers connected to the same router as you. +# WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet). +# x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers. + +# --------------------------------------------------------------------------- +# Networking +# --------------------------------------------------------------------------- + +# Enables automatic port mapping for game server. +# If you have a router game server will request for port forwarding. +# Default: True +EnableUPnP = True + +# Where's the Login server this gameserver should connect to +# WARNING: Please don't change default IPs here if you don't know what are you doing! +# WARNING: External/Internal IPs are now inside "ipconfig.xml" file. +# Default: 127.0.0.1 +LoginHost = 127.0.0.1 + +# TCP port the login server listen to for gameserver connection requests +# Default: 9014 +LoginPort = 9014 + +# Bind address for gameserver. You should not need to change it in most cases. +# WARNING: Please don't change default IPs here if you don't know what are you doing! +# WARNING: External/Internal IPs are now inside "ipconfig.xml" file. +# Default: * (0.0.0.0) +GameserverHostname = * + +# Default: 7777 +GameserverPort = 7777 + + +# --------------------------------------------------------------------------- +# Database +# --------------------------------------------------------------------------- + +# Specify the appropriate driver and url for the database you're using. +# Examples: +# Driver = com.mysql.jdbc.Driver (default) +# Driver = org.hsqldb.jdbcDriver +# Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver +Driver = com.mysql.jdbc.Driver +# Database URL +# URL = jdbc:mysql://localhost/l2jsrgs (default) +# URL = jdbc:hsqldb:hsql://localhost/l2jsrgs +# URL = jdbc:sqlserver://localhost/database = l2srgs/user = sa/password = +URL = jdbc:mysql://localhost/l2jsunrise +# Database user info (default is "root" but it's not recommended) +Login = root +# Database connection password +Password = + +# Default: 100 +MaximumDbConnections = 1000 + +# Default: 0 +MaximumDbIdleTime = 0 + +# Check interval of inactive connections, default is 60 (1 minute) +# Assuming a stable connection to the database and the correct Preset MaxIdleConnectionTimeout, can be set -1 (not checked) +IdleConnectionTestPeriod = 60 + +# --------------------------------------------------------------------------- +# Misc Server Settings +# --------------------------------------------------------------------------- + +# This is the server ID that the Game Server will request. +# Example: 1 = Bartz +# Default: 1 +RequestServerID = 1 + +# True = The Login Server will give an other ID to the server if the requested ID is already reserved. +# Default: True +AcceptAlternateID = True + +# Datapack root directory. +# Defaults to current directory from which the server is started unless the below line is uncommented. +# WARNING: If the specified path is invalid, it will lead to multiple errors! +#Default: . +DatapackRoot = . + +# Define how many players are allowed to play simultaneously on your server. +# Default: 100 +MaximumOnlineUsers = 100 + +# Numbers of protocol revisions that server allows to connect. +# Delimiter is ; +# WARNING: Changing the protocol revision may result in incompatible communication and many errors in game! +# Default: 267;268;271;273 +AllowedProtocolRevisions = 267;268;271;273;746 + + +# --------------------------------------------------------------------------- +# Misc Player Settings +# --------------------------------------------------------------------------- + +# Character name template. +# Examples: +# CnameTemplate = [A-Z][a-z]{3,3}[A-Za-z0-9]* +# The above setting will allow names with first capital letter, next three small letters, +# and any letter (case insensitive) or number, like OmfgWTF1 +# CnameTemplate = [A-Z][a-z]* +# The above setting will allow names only of letters with first one capital, like Omfgwtf +# Default .* (allows any symbol) +CnameTemplate = [A-Za-z0-9]{2,16} + +# This setting restricts names players can give to their pets. +# See CnameTemplate for details +PetNameTemplate = [A-Za-z0-9]{2,16} + +# This setting restricts clan/subpledge names players can set. +# See CnameTemplate for details +ClanNameTemplate = [A-Za-z0-9]{2,16} + +# Maximum number of characters per account. +# Default: 7 (client limit) +CharMaxNumber = 7 \ No newline at end of file diff --git a/game/config/network/Server - production.ini b/game/config/network/Server - production.ini new file mode 100644 index 00000000..5b450d63 --- /dev/null +++ b/game/config/network/Server - production.ini @@ -0,0 +1,124 @@ +# --------------------------------------------------------------------------- +# Game Server Settings +# --------------------------------------------------------------------------- +# This is the server configuration file. Here you can set up the connection information for your server. +# This was written with the assumption that you are behind a router. +# Dumbed Down Definitions... +# LAN (LOCAL area network) - typically consists of computers connected to the same router as you. +# WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet). +# x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers. + +# --------------------------------------------------------------------------- +# Networking +# --------------------------------------------------------------------------- + +# Enables automatic port mapping for game server. +# If you have a router game server will request for port forwarding. +# Default: True +EnableUPnP = True + +# Where's the Login server this gameserver should connect to +# WARNING: Please don't change default IPs here if you don't know what are you doing! +# WARNING: External/Internal IPs are now inside "ipconfig.xml" file. +# Default: 127.0.0.1 +LoginHost = 127.0.0.1 + +# TCP port the login server listen to for gameserver connection requests +# Default: 9014 +LoginPort = 9014 + +# Bind address for gameserver. You should not need to change it in most cases. +# WARNING: Please don't change default IPs here if you don't know what are you doing! +# WARNING: External/Internal IPs are now inside "ipconfig.xml" file. +# Default: * (0.0.0.0) +GameserverHostname = * + +# Default: 7777 +GameserverPort = 7777 + + +# --------------------------------------------------------------------------- +# Database +# --------------------------------------------------------------------------- + +# Specify the appropriate driver and url for the database you're using. +# Examples: +# Driver = com.mysql.jdbc.Driver (default) +# Driver = org.hsqldb.jdbcDriver +# Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver +Driver = com.mysql.jdbc.Driver +# Database URL +# URL = jdbc:mysql://localhost/l2jsrgs (default) +# URL = jdbc:hsqldb:hsql://localhost/l2jsrgs +# URL = jdbc:sqlserver://localhost/database = l2srgs/user = sa/password = +URL = jdbc:mysql://159.203.103.203/l2jsunrise +# Database user info (default is "root" but it's not recommended) +Login = root +# Database connection password +Password = + +# Default: 100 +MaximumDbConnections = 1000 + +# Default: 0 +MaximumDbIdleTime = 0 + +# Check interval of inactive connections, default is 60 (1 minute) +# Assuming a stable connection to the database and the correct Preset MaxIdleConnectionTimeout, can be set -1 (not checked) +IdleConnectionTestPeriod = 60 + +# --------------------------------------------------------------------------- +# Misc Server Settings +# --------------------------------------------------------------------------- + +# This is the server ID that the Game Server will request. +# Example: 1 = Bartz +# Default: 1 +RequestServerID = 1 + +# True = The Login Server will give an other ID to the server if the requested ID is already reserved. +# Default: True +AcceptAlternateID = True + +# Datapack root directory. +# Defaults to current directory from which the server is started unless the below line is uncommented. +# WARNING: If the specified path is invalid, it will lead to multiple errors! +#Default: . +DatapackRoot = . + +# Define how many players are allowed to play simultaneously on your server. +# Default: 100 +MaximumOnlineUsers = 100 + +# Numbers of protocol revisions that server allows to connect. +# Delimiter is ; +# WARNING: Changing the protocol revision may result in incompatible communication and many errors in game! +# Default: 267;268;271;273 +AllowedProtocolRevisions = 267;268;271;273;746 + + +# --------------------------------------------------------------------------- +# Misc Player Settings +# --------------------------------------------------------------------------- + +# Character name template. +# Examples: +# CnameTemplate = [A-Z][a-z]{3,3}[A-Za-z0-9]* +# The above setting will allow names with first capital letter, next three small letters, +# and any letter (case insensitive) or number, like OmfgWTF1 +# CnameTemplate = [A-Z][a-z]* +# The above setting will allow names only of letters with first one capital, like Omfgwtf +# Default .* (allows any symbol) +CnameTemplate = [A-Za-z0-9]{2,16} + +# This setting restricts names players can give to their pets. +# See CnameTemplate for details +PetNameTemplate = [A-Za-z0-9]{2,16} + +# This setting restricts clan/subpledge names players can set. +# See CnameTemplate for details +ClanNameTemplate = [A-Za-z0-9]{2,16} + +# Maximum number of characters per account. +# Default: 7 (client limit) +CharMaxNumber = 7 diff --git a/game/core.jar b/game/core.jar index ce512edc..9daed4fc 100644 Binary files a/game/core.jar and b/game/core.jar differ diff --git a/game/data/html/CommunityBoard/Elemental/player.htm b/game/data/html/CommunityBoard/Elemental/player.htm new file mode 100644 index 00000000..01d2871c --- /dev/null +++ b/game/data/html/CommunityBoard/Elemental/player.htm @@ -0,0 +1,68 @@ + + + + + + +
+ + + + + + + + + + +
Place an item for AuctionCurrent Auctions
+ + + + + + +
Auctionable Items
%inventario%
%inventarioFlechas%

+ + + + + + + + + + + + +
Items to be Auctioned
%itemSelected%
+ + + +
Quantity%quantity%
+ + +
Sale Price%salePrice%
+ + +
Duration%duration%
+ +
Total Price

+ +
+ + +
Sale Fee

+ +
+ + +
Adena
+
Item List %itemCount%
+ + + + +
%tablas%
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/Elemental/purchase.htm b/game/data/html/CommunityBoard/Elemental/purchase.htm new file mode 100644 index 00000000..e0baa1eb --- /dev/null +++ b/game/data/html/CommunityBoard/Elemental/purchase.htm @@ -0,0 +1,49 @@ + + +
+ + + +
+ + +
+ + + + +
+ + + + +
%itemSelected%
+ + +
Quantity%quantity%
+ + +
Sale Price
+ + + +
Total Price

+ + +
+ + +
Adena
+ + + + +%itemStats% +%itemElements%
%itemName%
%itemGrade%
Seller: %sellerName%
+ +
+ +
+ + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/Elemental/server.htm b/game/data/html/CommunityBoard/Elemental/server.htm new file mode 100644 index 00000000..4cff34b5 --- /dev/null +++ b/game/data/html/CommunityBoard/Elemental/server.htm @@ -0,0 +1,35 @@ + + + + + +
+ + + + + + + + + +
GradeSearch Word
+ + + + + +
TypeItem List %itemCount%
%categorias%
+ + + +
%tablas%
+ + +
Adena
+ + +
+ + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/boss.htm b/game/data/html/CommunityBoard/boss.htm index e6ba1b82..1c147079 100644 --- a/game/data/html/CommunityBoard/boss.htm +++ b/game/data/html/CommunityBoard/boss.htm @@ -1,62 +1,67 @@ - -L2jSunrise Community Board -
- - -
- -
- - - - -
- - - - -
-


- - - - - - - - - - -
- Rankings

-
- - - - - - - - -
G.Raidbosses
-
- - - - - -
#Boss NameStatus
- %gboss% -
-
-

- - - `` - -
-
-
-
- \ No newline at end of file + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + +
+ + + + + + + + + + + + + + + + + %gboss% +
Rank:Boss Name:Status:
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015
+
+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/commands.htm b/game/data/html/CommunityBoard/commands.htm index c189c216..2c791f3b 100644 --- a/game/data/html/CommunityBoard/commands.htm +++ b/game/data/html/CommunityBoard/commands.htm @@ -1,174 +1,66 @@ - -L2jSunrise Community Board -
- - -
- -
- - - - -
- - - - -
-
- - - - - - - -
-

Commands Info -
- - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- .ccp - - : - - Character control panel -
- .changepassword - - : - - You can change the password of your account -
- .getreward - - : - - Use it every 12 hours to claim Reward from Voting -
- .online - - : - - Shows how many players are online in game -
- .aioitem - - : - - Use this command for aio item -
- .premium - - : - - Use this command to check your premium info -
- .giran .dion etc - - : - - Use this commands to teleport fast -
- .engage - - : - - Use this command to marry -
- .divorce - - : - - Use this command to divorce -
- .gotolove - - : - - Use this command to teleport yourself to your love -
- .join or .leave - - : - - Use this commands to register or unregister to running events -
-
-
-

- - - - -
-
-
-
-
- + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + +
+ + + + + + + + + + + + + + + + +
Here is a list of available voiced commands.
.ccp - Provides you a panel where you can set up various settings for your character
.password - Provides you a panel where you can change the password of your account
.repair - Provides you a panel where you can repair your stacked player
.getreward - Use this command once every 12 hours after voting and get a random reward
.join/.leave - Use this commands to register or unregister to running events
.aioitem - Provides you a aio item (gatekeeper-shop etc.)
.engage/.gotolove/.divorce - Use this command to marry,divorce or teleport yourself to your love
.online - Provides you with message real online players count
Have in mind that all this commands are free of use for everyone
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015
+
+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/donate.htm b/game/data/html/CommunityBoard/donate.htm index aadc49b1..3a37f3f2 100644 --- a/game/data/html/CommunityBoard/donate.htm +++ b/game/data/html/CommunityBoard/donate.htm @@ -1,74 +1,68 @@ - -L2jSunrise Community Board -
- - -
- -
- - - - -
- - - - -
-
- - - - - - - -
- Donation -
-

Hello traveller, here is some information about donation on L2jSunrise!
-
Donations Agreement
- - - - - -
-
- By submitting donation to L2jSunrise x15 you agree that you are NOT entitled to receive anything from us! - Rewards list can be found in www.l2jsunrise.com - You can donate with multiple ways like: Paypal , PaySafeCard , Neteller , Western Union , Moneybookers & Bank Wire Transfer. -
- - - - - -
STEPS HOW TO DONATE: - In order to make a donation you need to contact us first at l2jsunrise@gmail.com or on our official skype. - After you tell us with what method you would like to donate, we give you the details to make the transaction. - After you made the transaction you provide us: Char name + Rewards, delivery of rewards takes 1-5 minutes. -
- - - - - -
CONTACT STAFF INFO: - Skype: vnevermore1 - Email: l2jsunrise@gmail.com -
-
-

- - - - -
-
-
-
-
- + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + +
+ + + + + + + + + + + + + + + + + + +
Its important to read donate rules before making a donation to L2 Pegasus
For the time being there are only 2 ways to donate.There will be more ways soon.
First way. is from your paypal account or in other words using paypal. All you have to do is send
the money to lineage2pgs@gmail.com and then send an e-mail with your transaction details
and name of character/account. For each euro you donate you will be rewarded with 1 golden apiga.
Second way. is with paysafecards. If you dont know what a pasafecard is then use google for
further information.All you have to do is send an e-mail to lineage2pgs@gmail.com with PINS, amount
of money and your character name/account. For each euro you donate you will be rewarded
with 1 golden apiga. For more information abou this way please contact server administrator.
Now remember that you will receive your reward within 12 hours.
Thanks for reading and supporting L2 Pegasus in any way. Have a nice day.
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015
+
+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/events.htm b/game/data/html/CommunityBoard/events.htm new file mode 100644 index 00000000..d2a30d49 --- /dev/null +++ b/game/data/html/CommunityBoard/events.htm @@ -0,0 +1,66 @@ + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + +
+ + + + + + + + + + + + + + + + +
Lineage 2 Pegasus owns L2jReunions event engine.
L2jReunions event engine provides 2 kind of events. Automated events and mini events.
Automated events are automated & random every 2 hours and you can join them using .join/.leave
commands or registering from Event npc located in giran.Automated events are Team vs Team,Zombies
Domination,Mass domination,Last man standing,DeathMatch,Hunting grounds and Battlefields
Mini events are not automated and you can join them using the event monument which is located
in giran near olympiad monument.Mini events are Single player fights,Part fights,Mini TvT,Korean style
Always remember to use buffs in events,you can configure them from Event npc located in giran.Also
there's Events tab in community board where you can check various information about events.
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015
+
+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/friends/friends.htm b/game/data/html/CommunityBoard/friends/friends.htm new file mode 100644 index 00000000..a750a466 --- /dev/null +++ b/game/data/html/CommunityBoard/friends/friends.htm @@ -0,0 +1,424 @@ + + +
+
+
+ + + + +


+ + + + + + + +
+ + + + + + + +
Friends
Manage your friends and block list: invite, delete, block players.
+
+ + + + + + + +
+
+ + + + + + + +
+
+ + + + + +
+ + + + + + +
+ + + + +
+ + + + +
+ + + + +
Friends
+
+ + + + + + + +
+ + + + + + + +
%charName1%
%charLoginDate1%
+
%btn1%
+ + + + + + +
+ + + + + + + +
%charName3%
%charLoginDate3%
+
%btn3%
+ + + + + + +
+ + + + + + + +
%charName5%
%charLoginDate5%
+
%btn5%
+ + + + + + +
+ + + + + + + +
%charName7%
%charLoginDate7%
+
%btn7%
+ + + + + + +
+ + + + + + + +
%charName9%
%charLoginDate9%
+
%btn9%
+ + + + + + +
+ + + + + + + +
%charName11%
%charLoginDate11%
+
%btn11%
+
+
+ + + + +
+ + + + +
+ + + + +
%fonline% / %fall%
+
+ + + + + + + +
+ + + + + + + +
%charName2%
%charLoginDate2%
+
%btn2%
+ + + + + + +
+ + + + + + + +
%charName4%
%charLoginDate4%
+
%btn4%
+ + + + + + +
+ + + + + + + +
%charName6%
%charLoginDate6%
+
%btn6%
+ + + + + + +
+ + + + + + + +
%charName8%
%charLoginDate8%
+
%btn8%
+ + + + + + +
+ + + + + + + +
%charName10%
%charLoginDate10%
+
%btn10%
+ + + + + + +
+ + + + + + + +
%charName12%
%charLoginDate12%
+
%btn12%
+
+
+ + + + +
+ + + + +
+ + + + + +
Blocked players%blocked%
+
+ + + + + + + +
+ + + + + + + +
%bcharName1%
%bchar1%
+
%bbtn1%
+ + + + + + +
+ + + + + + + +
%bcharName2%
%bchar2%
+
%bbtn2%
+ + + + + + +
+ + + + + + + +
%bcharName3%
%bchar3%
+
%bbtn3%
+ + + + + + +
+ + + + + + + +
%bcharName4%
%bchar4%
+
%bbtn4%
+ + + + + + +
+ + + + + + + +
%bcharName5%
%bchar5%
+
%bbtn5%
+ + + + + + +
+ + + + + + + +
%bcharName6%
%bchar6%
+
%bbtn6%
+
+
+
+

+ + + + +
Community Board | L2 Pegasus 2014 - 2015

+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/index.htm b/game/data/html/CommunityBoard/index.htm index 87367d61..38125c93 100644 --- a/game/data/html/CommunityBoard/index.htm +++ b/game/data/html/CommunityBoard/index.htm @@ -1,443 +1,68 @@ - -L2jSunrise Community Board -
- - -
- -
- - - - -
- - - - -
- - - - - - - - -
- - - - - - - - - - - - - -
- - - - -
- - - - -
- Character Information -
- - - - - - -
- Name - - : - - %name% -
- - - - - - -
- Class - - : - - %class% -
- - - - - - -
- Level - - : - - %level% -
- - - - - - -
- Clan - - : - - %clan% -
- - - - - - -
- Nobles - - : - - %noble% -
- - - - - - -
- Online Time - - : - - %online_time% -
- - - - - - -
- Your IP - - : - - %ip% -
-
-
- - - - -
- - - - -
- Online Players: %online% -
-
-
- - - - -
- - - - -
- Character Control Panel -
- - - - - - - -
- Trade Refusal: - - - - - - - - - -
-
- - - - - - -
- Block Exp: - - - - - - - - - -
-
- - - - - - -
- Buff Protection: - - - - - - - - - -
-
- - - - - - -
- Ench.Animation: - - - - - - - - - -
-
- - - - - - -
- Hide Stores: - - - - - - - - - -
-
- - - - - - -
- Auto Shots: - - - - - - - - - -
-
- - - - - - -
- Shots Anim.: - - - - - - - - - -
-
-
-
-
- - - - - - - - -
- - - - -
- - - - -
- Announcements and News -
-
- - - - - - -
-

1.5 month has passed since the opening.We're rly glad that server is alive, we have great online and the best community. Thats why we decided to create 2nd bonus start for newcomers and make some interesting changes for old players. For more information visit www.l2jsunrise.com/forum
-
- posted on 8/9/2015 from NeverMore
-
-
- - - - - - -
-

Dont forget to vote daily for unique rewards and prizes. You can either use our getreward command or vote from community board and claim your reward.You can vote once every 12 hours . Abusing the vote system will cause you pernament ban.
-
- posted on 8/9/2015 from vGodFather
-
-
- - - - - - -
-

We recently updated our mmocore engine, you should not face area lag prolems anymore or stuck problems that was existing on l2j scene from c4 times. Please report any related problem or issue to our forum .
-
- posted on 7/9/2015 from NeverMore
-
-
-
- - - - -
- - - - - - - - - - -
- - - - -
-

- Info -
- - - - -
-

- Commands -
- - - - -
-

- Ranks -
- - - - -
-

- Donate -
- - - - -
-

- RB & Instances -
-
-
-
-
-
-
- \ No newline at end of file + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + +
+ + + + + + + + + + + + + + + + + + +
Welcome to L2 Pegasus - Gate of Chaos x100
L2 pegasus is a brand new L2J server that simulates a game environment similar to the game Lineage II.
Our server was prepared carefully, based on several years of research and experience with Lineage II,
in order to provide an incredible experience that you will never have on any other server.
- Private source files
- Close to retail H5 gameplay
- Improved geodata and pathnodes
- Quests/Instances/Skills working retail like
- DDoS Protection installed
- LameGuard antibot/cheat protection installed
Enjoy your stay at L2 pegasus and remember to vote for us daily for a better gameplay
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015
+
+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid1.htm b/game/data/html/CommunityBoard/raid1.htm index 68f4bfd0..326590b9 100644 --- a/game/data/html/CommunityBoard/raid1.htm +++ b/game/data/html/CommunityBoard/raid1.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid10.htm b/game/data/html/CommunityBoard/raid10.htm index 361549ff..30fe4bc1 100644 --- a/game/data/html/CommunityBoard/raid10.htm +++ b/game/data/html/CommunityBoard/raid10.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid2.htm b/game/data/html/CommunityBoard/raid2.htm index bd9ca2dc..1e73702d 100644 --- a/game/data/html/CommunityBoard/raid2.htm +++ b/game/data/html/CommunityBoard/raid2.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid3.htm b/game/data/html/CommunityBoard/raid3.htm index fda34341..8d23e341 100644 --- a/game/data/html/CommunityBoard/raid3.htm +++ b/game/data/html/CommunityBoard/raid3.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid4.htm b/game/data/html/CommunityBoard/raid4.htm index 1159cea5..88502e98 100644 --- a/game/data/html/CommunityBoard/raid4.htm +++ b/game/data/html/CommunityBoard/raid4.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid5.htm b/game/data/html/CommunityBoard/raid5.htm index 1fce3363..7b0a1678 100644 --- a/game/data/html/CommunityBoard/raid5.htm +++ b/game/data/html/CommunityBoard/raid5.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid6.htm b/game/data/html/CommunityBoard/raid6.htm index e05c791f..1367b889 100644 --- a/game/data/html/CommunityBoard/raid6.htm +++ b/game/data/html/CommunityBoard/raid6.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid7.htm b/game/data/html/CommunityBoard/raid7.htm index fb188b54..af7c58d5 100644 --- a/game/data/html/CommunityBoard/raid7.htm +++ b/game/data/html/CommunityBoard/raid7.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid8.htm b/game/data/html/CommunityBoard/raid8.htm index 5450c4a9..9f766376 100644 --- a/game/data/html/CommunityBoard/raid8.htm +++ b/game/data/html/CommunityBoard/raid8.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/raid9.htm b/game/data/html/CommunityBoard/raid9.htm index b36021ee..47eaafbc 100644 --- a/game/data/html/CommunityBoard/raid9.htm +++ b/game/data/html/CommunityBoard/raid9.htm @@ -1,87 +1,91 @@ - -L2jSunrise Community Board + -
- - -
+ +
- - -
- - - - -
-
- - - +
- Rankings

-
+ + + - -
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + + + - -
+ + + + + + + + + + + + + + + + + + + + %raidlist% +
Level:Name:Respawn Delay(hours)Status:
+
+ + + + + + + + + + + + + + - - - - - - - -
Pages:12345678910
- - - - - - - - - -
Raidbosses
-
- - - - - - - - - -
#NameLevelRespawn Delay(hours)Status
- %raidlist% -
- - - - - - - - - - - - - - -
Pages:12345678910
-
-
-
- - - - `` - - -
-
-
-
- \ No newline at end of file +
+
+ + + + + +
Community Board | L2 Pegasus 2014 - 2015
+ + + + + + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/rates.htm b/game/data/html/CommunityBoard/rates.htm new file mode 100644 index 00000000..c0e3dc93 --- /dev/null +++ b/game/data/html/CommunityBoard/rates.htm @@ -0,0 +1,97 @@ + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+
+ + + + +
+ + + + + + + + + + + + + + + + + + +
Exp: x100
Sp: x100
Adena: x30
Drop: x1
Quest exp: x10
Quest sp: x10
Quest adena: x10
Quest drop: x30
Spoil: x1
Manor: x5
Weight Limit: Unlimited
Extract Fish: x3
+
+ + + + + + + + + + + + +
Safe enchant: 4
Max enchant: 16
Normal Scroll chance: 33%
Blessed Scroll chance: 66%
Elemental Max.Level: 4
Stone chance: 66%
+
+ + + + + + + + + + + +
Max Clients per PC: 3
Buffs Duration: 1H
Max Oly Enchant: 6
Max Subclass: 3
Max Subclass Level: 85
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015
+
+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/region/bbs_region_list.htm b/game/data/html/CommunityBoard/region/bbs_region_list.htm new file mode 100644 index 00000000..678f1d4b --- /dev/null +++ b/game/data/html/CommunityBoard/region/bbs_region_list.htm @@ -0,0 +1,53 @@ + +

+ + + + +
+ + + + +
&$381;
+

+ + + + + +
+ + + + + +
+ + + + + + + +
Find shop manager
Here you can find all available shops,buyers and private creations from Kingdoms. No more searching one by one!
+
+ + + + + + +
Region NamePlayers registered
+
+%REGION_LIST% +
+

+ + + + +
Community Board | L2 Pegasus 2014 - 2015

+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/region/bbs_region_sellers.htm b/game/data/html/CommunityBoard/region/bbs_region_sellers.htm new file mode 100644 index 00000000..47fd1e38 --- /dev/null +++ b/game/data/html/CommunityBoard/region/bbs_region_sellers.htm @@ -0,0 +1,58 @@ + +
+ + + + + +
+ + + + +
&$381;%TREE%
+

+ + + + +
+

+ + + + + + + +
Player NameShop Title
+
+ %SELLER_LIST% +
+ +
+ + + %GO_LIST% + + %GO_LIST2% + + +
%NPAGE%
+ + +
+ + +
+

+
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015

+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/region/bbs_region_storetpl.htm b/game/data/html/CommunityBoard/region/bbs_region_storetpl.htm new file mode 100644 index 00000000..8f0c37b2 --- /dev/null +++ b/game/data/html/CommunityBoard/region/bbs_region_storetpl.htm @@ -0,0 +1,13 @@ +
+ + + + + + + +
%item_name% +%item_desc%%item_count%%item_price%
+ + +
\ No newline at end of file diff --git a/game/data/html/CommunityBoard/region/bbs_region_stpl.htm b/game/data/html/CommunityBoard/region/bbs_region_stpl.htm new file mode 100644 index 00000000..f45dbc0d --- /dev/null +++ b/game/data/html/CommunityBoard/region/bbs_region_stpl.htm @@ -0,0 +1,12 @@ +
+ + + + + + + +
%seller_name%%seller_title%
+ + +
\ No newline at end of file diff --git a/game/data/html/CommunityBoard/region/bbs_region_view.htm b/game/data/html/CommunityBoard/region/bbs_region_view.htm new file mode 100644 index 00000000..f3b0d4a5 --- /dev/null +++ b/game/data/html/CommunityBoard/region/bbs_region_view.htm @@ -0,0 +1,76 @@ + +
+ + + + + +
+ + + + +
&$381;%TREE%
+

+ + + + +


+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Type:  %sell_type%
&$413;:  %title%
&$163;:  %char_name% Set target
+
+ + + + + + + +
 &$493;&$1191;&$322;
+%STORE_LIST% +
+ + + + + +
+
+

+
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015

+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/region/bbs_regiontpl.htm b/game/data/html/CommunityBoard/region/bbs_regiontpl.htm new file mode 100644 index 00000000..9247126b --- /dev/null +++ b/game/data/html/CommunityBoard/region/bbs_regiontpl.htm @@ -0,0 +1,10 @@ + + + + + +
%region_name% +%region_desc%%sellers_count%
+ +
+
\ No newline at end of file diff --git a/game/data/html/CommunityBoard/rules.htm b/game/data/html/CommunityBoard/rules.htm new file mode 100644 index 00000000..bbf84813 --- /dev/null +++ b/game/data/html/CommunityBoard/rules.htm @@ -0,0 +1,67 @@ + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + + + +
+ + + + + + + + + + + + + + + + + +
Before making a donation you should agree with the following agreements so please read carefully.
Applying a donation to L2 Pegasus means that you agreed the following agreements
1. You are not purchasing any services or goods.Your donation is just a support to keep our server alive.
2. You agree, that upon donating to our server, all transactions are final and are not able to be refunded.
3. All members are equals and must apply to the server rules, otherwise it will lead on punishment.
4. If your game account gets banned, you are not entitled to any reimbursement or refund.
5. Virtual Donation Gifts will not be restored if lost, stolen or dropped in game.
6. You will not request any gift except golden apiga. Rewards are final.
7. You agree that all donations are voluntary and made of your own accord.
8. Becoming a donator does not entitle you to any favoritism in game.
9. There are no item refunds/exchanges given so be sure you request exactly what you want.
10. If you do not agree to these terms or cannot honor them do not make a donation.
+
+ + + + +
Community Board | L2 Pegasus 2014 - 2015
+
+
+ + \ No newline at end of file diff --git a/game/data/html/CommunityBoard/services/exclusiveShop.htm b/game/data/html/CommunityBoard/services/exclusiveShop.htm index 918f1f10..75ee3a41 100644 --- a/game/data/html/CommunityBoard/services/exclusiveShop.htm +++ b/game/data/html/CommunityBoard/services/exclusiveShop.htm @@ -185,7 +185,7 @@ Open -