
semkius
Members-
Posts
26 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by semkius
-
Discussion Looking Forward To Start A Server!
semkius posted a topic in General Discussion [English]
Hello, guys! I'm looking forward to start a mid-rates server. I used work with L2j servers a long time ago, but now I had like 2-3years vacations :D . I have no idea what now a days players are expecting from a good server. So: I'm looking for a person, that has (or wants to make, im ready to do it! I have some java basics, and know how to work with server(inside and files)) l2j mid rates server files that is ready to go live, chronicle is not important. I would buy VPS(host for server), advertisement and etc. stuff. All profit would go 50/50. If you re interested, contact me on skype: semkius2 -
WTB Lineage2 C6, Java, Nocustom 100 £
semkius replied to semkius's topic in Marketplace [L2Packs & Files]
up -
Hello, I buy Lineage2 c6 files + source, (java) but no code java. Server mode: No-custom. c6 pm with only skype: inzagis.exe I need full working server files, i buy and host server! Price: 100!!!!! £
-
you just pm me with your contacts, please read my post IM STILL LOOKING FOR FILES
-
[Help] L2Jesios Skilltree Bug,any Suggestions?
semkius replied to semkius's question in Request Server Development Help [L2J]
I will, indeed :) npcs,npc_ai_data,spawnlist,droplist :) btw, those files that you send me: CharTemplateTable: Error loading from file: 18.xml java.lang.NullPointerException at com.l2jesios.gameserver.datatables.CharTemplateTable.loadFileClass(CharTemplateTable.java:108) at com.l2jesios.gameserver.datatables.CharTemplateTable.<init>(CharTemplateTable.java:63) at com.l2jesios.gameserver.datatables.CharTemplateTable$SingletonHolder.<clinit>(CharTemplateTable.java:165) at com.l2jesios.gameserver.datatables.CharTemplateTable.getInstance(CharTemplateTable.java:48) at com.l2jesios.gameserver.GameServer.<init>(GameServer.java:193) at com.l2jesios.gameserver.GameServer.main(GameServer.java:459) -
[Help] L2Jesios Skilltree Bug,any Suggestions?
semkius replied to semkius's question in Request Server Development Help [L2J]
does aCis database match l2jesios db? I mean , can I only change server files, and leave database untouched? (it should be possible if l2jesios is based on l2jacis) -
I would like to buy already maked INTERLUDE L2J FILES. IT DOESNT METTER IF ITS MID, OR PVP. PM ME WITH OFFERS (describe your files and price)
-
65lvl letter in gm shop for farm, and then quest for barrakels head :D
-
[Help] L2Jesios Skilltree Bug,any Suggestions?
semkius replied to semkius's question in Request Server Development Help [L2J]
So? :))) what if it is based on linux? -
[Help] L2Jesios Skilltree Bug,any Suggestions?
semkius replied to semkius's question in Request Server Development Help [L2J]
Yes -
[Help] L2Jesios Skilltree Bug,any Suggestions?
semkius posted a question in Request Server Development Help [L2J]
Hey, I have a skilltree bug on l2jesios pack (maybe it's not bug, im trying to figure it out). Here is the situation: When I take subclass I dont get 1st class skills. Example: I take hawkeye subclass and I dont get no dash or even ultimate evasion, i try to "add all skills" via GM its not working. But if I lvl from 1 to 20, i take 1st class, and then lvl to 40lvl and take the 2nd class I have all skills.... In configuration files there is set that AutoSkillLearn=True. -
[Help] How To Create Exp Potion/scroll
semkius posted a question in Request Server Development Help [L2J]
Hey, Is there any way to create EXP potion or scroll? :) -
L2jesios raid respawn time.
semkius replied to semkius's question in Request Server Development Help [L2J]
problem solved. Thank you a lot! -
L2jesios raid respawn time.
semkius replied to semkius's question in Request Server Development Help [L2J]
http://maxcheaters.com/forum/index.php?topic=275504.msg2584351#msg2584351 i found this topic it helped me, but how to set respawn time to every 3minutes (as example) -
Hey, First time i have seen problem like this, in database, raidboss_spawnlist table, im trying to change Barakels respawn time and i have a problem. When first time i get there, i have seen this: 1379099558084 (that means about 27:45hours (97245minutes)) i counted that 1min should be = 14181702 ~. I entered it in respawn time column, and it didnt worked :/ Barakels respawns every 1-2sec after I kill him, Whats the problem??? ps. //spawn 25325 180 doesnt work... (it respawn immideatly after kill)
-
This one does now work: (dont count online ppl) <?php //first you need to define db info define('mySQL_hostname', 'localhost'); //database IP define('mySQL_database', 'lxjxxs'); //database name define('mySQL_username', 'xxxx'); //database user define('mySQL_password', 'ztxaasz'); //database password //connects to mysql $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); //connects to Database $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); //selects desired table $chars=mysql_query("SELECT * FROM characters"); //tells how much rows are there (will come helpfull with while loops) $rows =mysql_numrows($characters); $i=0; $x=0; //while $i is smaller than number of rows repeat the code while ($i < $rows) { $online=mysql_result($chars,$i,"online"); //looks into characters table, under column online(if player is online its "0" else "1"), at row $i if ($online == 1) { $x++; } // if column online at row $i is "1", increase $x $i++; //increase $i } print 'Online players:<em>'.$x.'<em>'; //prints out the $x number of players online ?> And this one works great, but makes my website go crazy (distorts everything): <?php //first you need to define db info define('server_ip', 'localhost'); //database IP define('mysql_user', 'asaxczt'); //database name define('mysql_pass', 'ęčąęčąęą'); //database user define('database', 'ėęčėęčėčę'); //database password //connects to mysql $connect = mysql_connect( server_ip, mysql_user, mysql_pass ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); //connects to Database $db_select = mysql_select_db( database, $connect ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); $query = mysql_query("SELECT online FROM characters WHERE online=1") or die(mysql_error()); $online_chars = mysql_num_rows($query); print 'Players Online:' .$online_chars; mysql_close($connect); ?> Where is the problem?
-
L2jEsios button TO VILLAGE = Move to Giran
semkius replied to semkius's question in Request Server Development Help [L2J]
is there any other way, without java, to set this? -
L2jEsios button TO VILLAGE = Move to Giran
semkius posted a question in Request Server Development Help [L2J]
How to set this option, that when you push TO VILLAGE you automaticlly go to Giran, and there is no metter where you died?? any help? -
Few problems with l2jesios pack, tvt event, and ...
semkius replied to semkius's question in Request Server Development Help [L2J]
any suggestions , guys? :) elfocrash, dont answer rme :/ -
Few problems with l2jesios pack, tvt event, and ...
semkius replied to semkius's question in Request Server Development Help [L2J]
I solved the problem with aggro, only TvT event left.... I dont get it... what could be wrong? -
Few problems with l2jesios pack, tvt event, and ...
semkius replied to semkius's question in Request Server Development Help [L2J]
l2jesios forum is closed. elfo seems to be bussy, cuz he dont answer pm message :( WHAT ABOUT TVT ITS THE MAIN QUESTION OF THIS TOPIC AND HOW TO EDIT NPC AGGRO/CLAN, when i try to edit it in game, I receive a error in the stdlog, that column aggro does not exist in database, when I add the aggro column, i dont receive no errors, but still - aggro stays 500.. -
Need help with gm shop
semkius replied to l2herbal's question in Request Server Development Help [L2J]
lol... it's easy. You go to merchant_buylist, select the column called PRICE, and edit the numbers.... thats how you set price of a item. before that, you have to find the ID of your iteam, that you want to change price of. ALT+G type item name ant Search/Find ID.... pm me for more help -
Few problems with l2jesios pack, tvt event, and ...
semkius replied to semkius's question in Request Server Development Help [L2J]
so if i want to set enchant rate mage 65 and fighter 75 so the code should look like this: <enchantscroll itemId="959"><!-- Scrolls: Enchant Weapon S --> <type grade="S" weapon="true" armor="false" isBlessed="false" hero="false"/> <plus min="1" max="1"/> <limits min="0" max="15"/> <drop min="0" max="0"/> <chance default="100" save="3"> <itemGroup type="magic" default="65" save="3"> <add level="16" chance="20"/> </itemGroup> <itemGroup type="fight" default="75" save="3"> <add level="16" chance="35"/> </itemGroup> </chance> </enchantscroll> ? and what the fcuk <add level="16" chance="35"/> means? -
Hello, people! I have a few problems with l2jesios pack, that i can not solve, so I decided to ask some help. Im using LINUX;Debian. 1st question: How to fix TVT event? I already created L2TvTEventNpc with 50006 ID, the npc spawns correctly, but when i try to click on the npc nothing happens, no chat appears, no error in gameserver log appears, just nothing happens. # <u><b><font color="red">WARNING: this mod require custom NPC table support turned on !</font></b></u> CustomNpcTable = True #in General.properties There is no such a file as GENERAL.PROPERTIES, but I created it manually, but still... same. 2nd question: How to understand that l2jesios .xml enchant system? I dont get it, how to set as example 50% enchant rate and max 16 ? <enchantscroll itemId="959"><!-- Scrolls: Enchant Weapon S --> <type grade="S" weapon="true" armor="false" isBlessed="false" hero="false"/> <plus min="1" max="1"/> <limits min="0" max="15"/> <drop min="0" max="0"/> <chance default="70" save="3"> <itemGroup type="magic" default="40" save="3"> <add level="16" chance="20"/> </itemGroup> <itemGroup type="fight" default="70" save="3"> <add level="16" chance="35"/> </itemGroup> </chance> </enchantscroll> 3rd question/request: Maybe someone still haves all l2jesios pack voicecommand list and custom nobless ID ? 4th question: How to edit NPC aggro/clan??... pre-thanks for those who will try to help me, THANKS!! sorry for bad english.