-
Posts
543 -
Credits
0 -
Joined
-
Last visited
-
Days Won
7 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by wongerlt
-
At first start i dont want make good ad, if players like it next time i make better :)
-
Interlude (C6) PVP server with custom modifications. Server has hight rates and max lvl at start, so you dont need to level up. In server shops you can get free a grade and farm with it for better gears. You dont need buy many potions, soulshots, arrows and etc, because this items is not consumable. http://L2Custom.com Rates: Xp 9999x. Sp 9999x. Adena (custom) 1x. Dropas (custom) 1x. PartyXp 1x. PartySp 1x. Starting level 80lv. Enchant rates: S Grade Weapons - 75%/85% Max: +21 A Grade Weapons - 75%/85% Max: +16 S Grade Arrmors - 75%/85% Max: +20 A Grade Arrmors - 75%/85% Max: +8 Blessed - 85% Normal - 75% Crystal - 100% Customs: Custom Weapons (Like L2Gold) Custom Arrmors Apella, Dynasty Custom Jewellery (Like L2Gold) Custom Tattos Custom Dyes Custom Augments Custom Zones Custom Rebirth Manager Custom Nobless Manager Custom Buffer Full buffs Custom Class skills Custom TvT Event zones Custom RB zones with teleporter Custom Sub Class Olympiad: Period 7 days. Every day at 18:00 GMT+2 Only A grade gears, no customs. And much more. Some screen shots: Custom augments http://image.prntscr.com/image/e4e5ba60cf6f405299f48dcfb8ae3440.png Custom dyes http://image.prntscr.com/image/96b958f795d848b8b96ffef9261e31c0.png RaidBoss teleporter http://prntscr.com/bys0eh Its me =GM=Avice http://prntscr.com/bys2g4 with full items ++ Custom TvT arena http://prntscr.com/bys4h4 PvP Reward arena http://prntscr.com/bys5nt ant much more other things. Server start 2016-08-08 18:00 GMT+2
-
Hello, I have two problems i can't find where to change color chat i mean color what player write together in normal or shout or pm, what file in client? Other i cant find file where to change ExShowScreenMessage color i know it need change in client side , because is interlude client. Other problem where to find this i want make custom dyes, but where find Symbol of Stenght Str+1 Dex-1 in me opinion it in client side but what file? where all symbol list? Thanks for all ;) Client is Interlude
-
Share L2J Acis Register/password Change Scripts Php
wongerlt posted a topic in Web Development/Designing
Me created scripts for web. Register script nude: <?php $error = ""; if(isset($_POST['register'])) { $conn = new mysqli("server_host", "db_user_name", "db_user_password", "db_database"); $id = mysqli_real_escape_string($conn, $_POST['id']); $password = base64_encode(sha1($_POST['password'], true)); if($_POST['password']!=$_POST['rpassword']){ $error .= "Password does not match the repeat password.<br>"; } if(mb_strlen($id)<4){ $error .= "User ID must be more than 3 symbol.<br>"; } $sql = "SELECT `login` FROM `accounts` WHERE `login`='".$id."'"; $result = $conn->query($sql); if ($result->num_rows!=0) { $error .= "User ID already exist. Please chose other User ID.<br>"; } if(empty($error)){ $sql = "INSERT INTO `accounts` VALUES('".$id."','".$password."','0','0','1','','".date("Y-m-d H:i:s")."')"; $result = $conn->query($sql); $error = "Account created, now you can login!!!!"; } } echo '<form id="register" method="post" action="#">'; echo (!empty($error)?"<label><strong>".$error."</strong></label>":''); echo '<label for="userid">User ID</label> <input id="userid" name="id" type="text"> <label for="userpass">Password</label> <input id="userpass" name="password" type="password"> <label for="userpassr">Repeat password</label> <input id="userpassr" name="rpassword" type="password"> <input id="submit" name="register" type="submit" value="Register"> </form>'; ?> Change password script nude: <?php $error = ""; if(isset($_POST['changepass'])) { $conn = new mysqli("server_host", "db_user_name", "db_user_password", "db_database"); $id = mysqli_real_escape_string($conn, $_POST['id']); $password = base64_encode(sha1($_POST['password'], true)); $newp = $_POST['newp']; $renewp = $_POST['renewp']; $pass = base64_encode(sha1($_POST['newp'], true)); $sql = "SELECT `login` FROM `accounts`,`characters` WHERE accounts.login='".$id."' AND accounts.password='".$password."' AND characters.account_name='".$id."' AND characters.online=0"; $result = $conn->query($sql); if ($result->num_rows==0) { $error .= "User ID or Password is wrong or you are online in game, please check and try again."; } if($newp!=$renewp){ $error .= "New password does not match the confirm password, please check and try again."; } if(empty($error)) { mysqli_query($conn,"UPDATE `accounts` SET `password`='".$pass."' WHERE `login`='".$id."'"); $error = "Password changed."; } } echo '<form id="change-password" method="post" action="#">'; echo (!empty($error)?"<label><strong>".$error."</strong></label>":''); echo '<label for="cpw">User ID</label> <input id="userid" name="id" type="text"> <label for="userpass">Current password</label> <input id="userpass" name="password" type="password"> <label for="newpass">New password</label> <input id="newpass" name="newp" type="password"> <label for="newpassr">Confirm new password</label> <input id="newpassr" name="renewp" type="password"> <input id="submit" name="changepass" type="submit" value="Change Password"> </div> </form>'; ?> -
Bypass Process Hacker Protection
wongerlt replied to Flux's topic in Request Hacks & Cheats [English]
Dual connections bug its a keyword u find 100% solutions. -
LF Rb Spawn Announcement L2Acis
wongerlt replied to davi1993's question in Request Server Development Help [L2J]
+import net.sf.l2j.gameserver.util.Broadcast; _log.info("RaidBoss: " + raidboss.getName() + " has spawned."); +Broadcast.announceToOnlinePlayers(raidboss.getName() + ": Im alive!! who try to kill me???" , true); ..... ..... ..... +Broadcast.announceToOnlinePlayers(boss.getName() + ": Im dead... I will be back after " +respawnDelay+ " hours." , true); _schedules.put(boss.getNpcId(), ThreadPoolManager.getInstance().scheduleGeneral(new spawnSchedule(boss.getNpcId()), respawnDelay * 3600000)); from me server. -
Help Siege Problems With Guard Ai
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
u mean L2Character.java->moveToLocation function change to other from other pack? -
Help Siege Problems With Guard Ai
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
I have made many modification on me sources files, so its hard.. Maybe ither solution to fix? -
Help Siege Problems With Guard Ai
wongerlt posted a question in Request Server Development Help [L2J]
Hello, When start siege i get many errors with same error log: at net.sf.l2j.gameserver.model.actor.L2Character.moveToLocation(L2Character.java:3612) at net.sf.l2j.gameserver.model.actor.L2Character$AIAccessor.moveTo(L2Character.java:2845) at net.sf.l2j.gameserver.ai.AbstractAI.moveTo(AbstractAI.java:538) at net.sf.l2j.gameserver.ai.AbstractAI.moveToPawn(AbstractAI.java:494) at net.sf.l2j.gameserver.ai.L2CharacterAI.maybeMoveToPawn(L2CharacterAI.java:877) at net.sf.l2j.gameserver.ai.L2PlayerAI.thinkCast(L2PlayerAI.java:235) at net.sf.l2j.gameserver.ai.L2PlayerAI.onEvtThink(L2PlayerAI.java:312) at net.sf.l2j.gameserver.ai.L2CharacterAI.onEvtArrived(L2CharacterAI.java:641) at net.sf.l2j.gameserver.ai.AbstractAI.notifyEvent(AbstractAI.java:373) at net.sf.l2j.gameserver.ai.AbstractAI.notifyEvent(AbstractAI.java:296) in 10 mins i get about 10mb to log file with this error. What here can be wrong? -
Help How To Get Hwid With Packets?
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
Hmm okay, maybe are other method to check dualbox its same pc or no? -
Help How To Get Hwid With Packets?
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
I know this already, i ask some information about it , how it work and etc. :) -
Help How To Get Hwid With Packets?
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
So what point wirite one part of code here? If you dont give functions code and it cant work without it? :D -
Help How To Get Hwid With Packets?
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
Hmm what need in client for it? -
Help How To Get Hwid With Packets?
wongerlt posted a question in Request Server Development Help [L2J]
Hello, In what method i can capture Hardware id from client in server side? Maybe can someone give me more informations for it? Thanks :) -
Hello, Maybe someone have dsetup.dll sources for interlude? And can share it :)
-
Help Html File (Page1,page2,page3)
wongerlt replied to rlfem123's question in Request Server Development Help [L2J]
content dynamic or static?- 14 replies
-
Hello, Why sometime when i log to server first time i not see htm content, if i click again npc then i see, what is wrong?
-
which one? tag class mesh cnt_tex1 tex1[0] tex1[1] tex1[2] tex1[3] tex1[4] cnt_tex2 tex1[0] tex1[1] cnt_dtab1 dtab1[0] dtab1[1] dtab1[2] dtab1[3] dtab1[4] dtab1[5] dtab1[6] dtab1[7] dtab1[8] dtab1[9] dtab1[10] dtab1[11] dtab1[12] dtab1[13] dtab1[14] dtab1[15] dtab1[16] dtab1[17] dtab1[18] dtab1[19] dtab1[20] dtab1[21] dtab1[22] dtab1[23] dtab1[24] dtab1[25] npc_speed unk0_cnt unk0_tab cnt_snd1 snd1[0] snd1[1] snd1[2] cnt_snd2 snd2[0] snd2[1] snd2[2] snd2[3] snd2[4] cnt_snd3 snd3[0] snd3[1] snd3[2] rb_effect_on rb_effect rb_effect_fl unk1_cnt unk1_tab[0] unk1_tab[1] unk1_tab[2] unk1_tab[3] unk1_tab[4] effect UNK_2 sound_rad sound_vol sound_rnd quest_be class_lim_? i found, lock thread ;)
-
Hello, how remove exclamation mark, like in this photo? http://prntscr.com/a4387t
-
Hello, its posible to make link without underline? Example now <a... tags: Link i want without underine: Link
-
Help Drop How Work Chance
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
now im understand, thanks for help :) -
Hello, now im working with drop and i need info about how work chance, example now i see in npc table: category id=1..... drop id=2.... chance=90000 drop id=5.... chance=50000 category close.... now i want to make id 5 chance 35% and id 2 75% how i need to write? and what mean 90000 and 50000?
-
Help Me Guards Not Attack Pk
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
I fixed it, just in ai script i find error, thx for help ;) -
Help Me Guards Not Attack Pk
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
Its old version, command doesn't exist. And all server guards don't attack pk players. So how to fix it? http://prntscr.com/a1x5uj And i change aggro to 2000 l -
Help Me Guards Not Attack Pk
wongerlt replied to wongerlt's question in Request Server Development Help [L2J]
Tessa, now im testing, i log with 2 char and set karma to 5k example. Guard dont attack. But if im try attack guard and it kill me then guard start kill other char who have karma.