1. sayfa
Php Java bu da güzel bir enstantane :) < Resime gitmek için tıklayın > |
L2JC3SERVER1229B tamamdır buymuş çorbada benimde azcık tuzum olsun:) |
L2JC3SERVER1229B EASY PHP JAVA JDK 1.5 SYSTEM560C4V22 tamamdır bu linklerden indirebilirsiniz.. |
Sevgili kardeşlerim size verdiğim bu adresten açıklamalı ve resimli server kurmayı öğrenebilirsiniz. |
c4 u hıc denemedım ben assagıdakı lınkte bazı bılgıler var goz atarsan belkı bıseyler cıkarırsın. http://forum.donanimhaber.com/m_6309673/tm.htm |
verdiğim linkteki resmime bakarmısınız... lineage2\ nin içine açmam gereken system560c4v22 hata veriyo yani doysaları dizine çıkarmıyo. bende mi bi hata var yoksa programda mı??? yardımcı olursanız sevinirim![]() ][~~ http://img107.imageshack.us/img107/8219/hata6yz.jpg ~~][ |
yeni system indirdim çalışıyo, fakat gameserver ve loginserver exe lerinde sorun yaşıyorum. start.bat ı çalıştırıyorum, sanal bi sürücü oluşturuyo. buraya kadar normal sanırım. sonra gameserver ve loginserverı çalıştırıyorum, yazılar çıkıyo ve en sonda dewam etmek için bi tuşa basın diyo ve bi tuşa basınca pencereler kapanıyo. he bide apache çalışırken sanal bellek oluşturmuyo (start.bat ı açınca) easy phpden apache yi kapatıyom öylelikle sanal sürücü oluşturuyo. ve son bişi, database_installeri çalıştırdım ilk sorusunu full (f) dedim enterladım, ikinci sorusunada full (f) dedim enterladım ve karşıma bissürü "error" kelimesini içeren cümleler çıktı.![]() http://img122.imageshack.us/img122/5687/hata28rp.jpg |
arakdaslar easyphp de ancak apache ve mysql sonlandırıcahttp://localhost/ girebiliyorum öbür türlü girmem imkansiz neden bu sekilde oluyor bilen yada basina gelen varmidir |
http://s8.createphpbb.com/banished/viewtopic.php?t=2&sid=864151d00b45e2a785bb6f2688be7297&mforum=banished bu adresteki gerekli şeyleri indir ve c dizinine kur. daha sonra dosyanın içinde tools klasörünü kur ve database_installer.bat ms-dos uygulamasına sağ tıklayarak düzenle de ve ordaki kodları silerek aşağıdaki kodları oraya kopyala color 74 @echo off REM ############################################ REM ## You can change here your own DB params ## REM ############################################ REM MYSQL BIN PATH set mysqlBinPath=C:\server\diskw\usr\local\mysql\bin REM LOGINSERVER set lsuser=root set lspass=root set lsdb=l2jdb set lshost=localhost REM GAMESERVER set gsuser=root set gspass=root set gsdb=l2jdb set gshost=localhost REM ############################################ set mysqldumpPath="%mysqlBinPath%\mysqldump" set mysqlPath="%mysqlBinPath%\mysql" echo PLEASE EDIT THIS SCRIPT SO VALUES IN THE CONFIG SECTION MATCH YOUR DATABASE(S) echo. echo. echo Making a backup of the original loginserver database. %mysqldumpPath% --add-drop-table -h %lshost% -u %lsuser% --password=%lspass% %lsdb% > loginserver_backup.sql echo. echo WARNING: A full install (f) will destroy data in your echo `accounts` and `gameserver` tables. echo Choose upgrade (u) if you already have an `accounts` table but no echo `gameserver` table (ie. your server is a pre LS/GS split version.) echo Choose skip (s) to skip loginserver DB installation and go to echo gameserver DB installation/upgrade. :asklogin set loginprompt=x set /p loginprompt=LOGINSERVER DB install type: (f) full or (u) upgrade or {s} skip or (q) quit? if /i %loginprompt%==f goto logininstall if /i %loginprompt%==u goto loginupgrade if /i %loginprompt%==s goto gsbackup if /i %loginprompt%==q goto end goto asklogin :logininstall echo Deleting loginserver tables for new content. %mysqlPath% -h %lshost% -u %lsuser% --password=%lspass% -D %lsdb% < login_install.sql :loginupgrade echo Installing new loginserver content. %mysqlPath% -h %lshost% -u %lsuser% --password=%lspass% -D %lsdb% < ../sql/accounts.sql %mysqlPath% -h %lshost% -u %lsuser% --password=%lspass% -D %lsdb% < ../sql/gameservers.sql :gsbackup echo. echo Making a backup of the original gameserver database. %mysqldumpPath% --add-drop-table -h %gshost% -u %gsuser% --password=%gspass% %gsdb% > gameserver_backup.sql echo. echo. echo WARNING: A full install (f) will destroy all existing character data. :asktype set installtype=x set /p installtype=GAMESERVER DB install type: (f) full install or (u) upgrade or (q) quit? if /i %installtype%==f goto fullinstall if /i %installtype%==u goto upgradeinstall if /i %installtype%==q goto end goto asktype :fullinstall echo Deleting all gameserver tables for new content. %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < full_install.sql :upgradeinstall echo Installing new gameserver content. echo Account Data %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/account_data.sql echo Armor %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/armor.sql echo Auction %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/auction.sql echo Auction Bid %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/auction_bid.sql echo Auction Watch %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/auction_watch.sql echo Auto Chat %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/auto_chat.sql echo Auto Chat Text %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/auto_chat_text.sql echo Boxacess %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/boxaccess.sql echo Boxes %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/boxes.sql echo Castle %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/castle.sql echo Castle Doors %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/castle_door.sql echo Castel Doorupgrade %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/castle_doorupgrade.sql echo Castle Siege Guards %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/castle_siege_guards.sql echo Character Templates %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/char_templates.sql echo Characer Friends %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_friends.sql echo Character Hennas %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_hennas.sql echo Character Macroses %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_macroses.sql echo Character Quests %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_quests.sql echo Character Recipebook %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_recipebook.sql echo Character Shortcuts %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_shortcuts.sql echo Character Skills %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_skills.sql echo Character Skills Save %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_skills_save.sql echo Character Subclasses %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/character_subclasses.sql echo Characters %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/characters.sql echo Clan Data %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/clan_data.sql echo Clan Wars %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/clan_wars.sql echo Clanhall %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/clanhall.sql echo Class List %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/class_list.sql echo Droplist %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/droplist.sql echo EtcItem %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/etcitem.sql echo Enchant Skill Trees %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/enchant_skill_trees.sql echo Fish %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/fish.sql echo Fishing Skill Trees %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/fishing_skill_trees.sql echo Fishreward %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/fishreward.sql echo Forums %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/forums.sql echo Games %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/games.sql echo Global Tasks %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/global_tasks.sql echo GM Audit %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/gmaudit.sql echo Heroes %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/heroes.sql echo Helper Buff List %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/helper_buff_list.sql echo Henna %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/henna.sql echo Henna Trees %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/henna_trees.sql echo Items %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/items.sql echo Locations %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/locations.sql echo LVL Upgain %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/lvlupgain.sql echo Mapregion %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/mapregion.sql echo Merchant Areas %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/merchant_areas_list.sql echo Merchant buylists %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/merchant_buylists.sql echo Merchant Lease %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/merchant_lease.sql echo Merchant Shopids %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/merchant_shopids.sql echo Merchants %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/merchants.sql echo Minions %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/minions.sql echo NPC Stats %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/npc.sql echo NPC Skills %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/npcskills.sql echo Hero Tables %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/olympiad_nobles.sql echo Petitions %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/petitions.sql echo Pets %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/pets.sql echo Pets Stats %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/pets_stats.sql echo Posts %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/posts.sql echo Raidboss Spawnlist %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/raidboss_spawnlist.sql echo Random Spawn %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/random_spawn.sql echo Random Spawn Loc %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/random_spawn_loc.sql echo Record %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/record.sql echo Seven Signs %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/seven_signs.sql echo Seven Signs Festival %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/seven_signs_festival.sql echo Seven Signs Status %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/seven_signs_status.sql echo Siege Clans %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/siege_clans.sql echo Skill Learn %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/skill_learn.sql echo Skill Spellbooks %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/skill_spellbooks.sql echo Skill Trees %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/skill_trees.sql echo Spawnlist %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/spawnlist.sql echo Teleport %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/teleport.sql echo Topic %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/topic.sql echo Weapon %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/weapon.sql echo Zone %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/zone.sql echo Custom Auto Restart %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Auto_Restart.sql echo Custom Droplist %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Droplist.sql echo Custom GM Shop and Admin GM Shop %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_GM_Shop_and_Admin_GM_Shop.sql echo Custom Helper Buffer %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Helper_Buffer.sql echo Custom Luxury Teleporter %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Luxury_Teleporter.sql echo Custom Skills %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Skills.sql echo Custom Spawnlist %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Spawnlist.sql echo Custom Weapons and Armor %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Weapons_and_Armor.sql echo Custom NPC %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_NPC.sql echo Custom Character Speed Tweak %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% < ../sql/Custom_Character_Speed_Tweak.sql :end echo. echo Database Installed Successfully. pause ------------------------------------------------------------------------------ Diskw, start.bat ve stop.bat ı senin indirdiğin klasörün içine at ve start.bat ı çalıştır. Db i kur ve patch'i lineage 2 klasörünün içine kur. böylece c5 itemli c4 serverı elde etmiş olursun. |
c4 server pack hariç değerlerini bulmak kolay herhangi bi arama motoruna yazman yeterli c4 server pack konusunda yardımcı olamayacağım edit=www.Lineage2Turkiye.com şurda sanırsam server pack olucaktı ^^ bi incele |
1. sayfa
JAVA JDK 1.5 52 MB
EASY PHP 8MB
L2JC3SERVER1229B 12 MB
SYSTEM560C4V22 70MB
KURULUM
JAVA YI VE EASY PHP YI KURUYORUZ
L2JC3SERVER1229B ( BU DOSYAYI C:\SERVER DIZININE ACIYORUZ )
SYSTEM560C4V22 ( BU DOSYANIN ICINDEKILERIDE C:\PROGRAMFILES\LINEAGE2 DIZININE ACIYORUZ )
DAHA SONRA MAKINAYI RESETLIYORUZ.
MAKINA ACILDIGINDA CTRL+ALT+DELETE YAPIYORUZ WINDOWS GOREV YONETICISINDE ISLEMLER SEKMESINE GELIYORUZ...APACHE.EXE VE APACHE ILE ILGILI TUM KAYNAKLARIN ISLEMINI SONLANDIRIYORUZ.
C:\server ICINDEKI START.BAT DOSYASINI CALISTIYORUZ.
C:\server\l2j\tools\database_installer.bat
C:\server\l2j\gameserver ICINDEKI STARTGAMESERVER.BAT DOSYASINI CALISTIRIYORUZ.
C:\server\l2j\login ICINDEKI STARTLOGINSERVER.BAT DOSYASINI CALISTIYORUZ.
BU IKI DOSYA CALISIR VAZIYETTE KALICAK.
SONRA C:\Program Files\Lineage II\system ICINDEKI L2.EXE DOSYASINI CALISTIYORUZ VE OYUNUN LOGIN EKRANINA GELIYORUZ USERNAME VE SIFRE KISMINA (bartz) YAZIYORUZ VE OYUNA GIRIYORUZ..
BUKADAR.:)
< Bu mesaj bu kişi tarafından değiştirildi Wesmo -- 13 Şubat 2006 23:03:14 >