Jump to content

fokys

Members
  • Posts

    485
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by fokys

  1. Hello MxC! I was using google.com to find info about Geodata since the shared ones are pretty buggy! So i found Geo from Stazi team! As far as i know they are Russian team and now they selling Geo for Freya! Price is 600$! I have done some more search and i have found pretty negative comments about them! So the question is,does anybody else here have more info about them? Because 600$ is a good sum and if you pay that money you expect something good!
  2. Thank you all for replays,i have found everything i needed! Just a quik question how can i change reuse time? I know ammount of mana restored can be changed editing POWER But there is no info about reuse
  3. It allways good to share! I will test it on my server
  4. Thats the thing it was written like that 1000-1 not like 10001! It was a bit confusing!
  5. Hello MxC! Just a quik question,i was gonna edit Mana Pots item id 728! So they recover more MP,from what i could see that item is using skill 1000-1! I was just wondering where can i find that skill to edit?Or there is an other way how to change it? I use L2J Freya last rev! Thanks!
  6. Hello Maxcheaters! I would like to ask somebody to point me at the wright direction to few things! 1)Guide how to apply path on Linux(using Putty) 2)Guide how to update server on Linux(Things that should be cheked to avoid any erros etc) If these somebody has these guides please share them or simply make one :) Knowledge is power,and it is great to share your knowledge!
  7. I have Putty but i also have ISP Manager PRO!
  8. Just a quik question! How to apply path on Linux? I was gonna apply PC BANG point system,but all guides are based for Windows servers! I am running L2J Freya server on Debian dedicated server! Eclipse is installed!
  9. If you are stillg offering help let me know! I need somebody to help me out with my L2J server! Thanks!
  10. Where can i change path for NEWS if i have installed my own CuteNews?
  11. <?php // // header( 'Content-type: text/xml' ); //IP ADDRESS WHICH WILL SEND REQUEST.FOR SECURITY REASON $check_ip[]="82.146.40.60"; $check_ip[]="188.120.245.101"; $check_ip[]="188.120.245.102"; $date=date("d.m.y"); //======================================SETUP============================================ // SECRET KEY $secret_key = "&f:GI1+v0[|IX%Y?#L.DXg+|i]?N!zXe"; // MYSQL DETAILS $server='localhost'; $user='user'; $pass='password'; $db='l2jdb'; //=========================================================================================== $flag = $_REQUEST['command']; $md5 = $_REQUEST['md5']; // PAYMENT IDENTICIFATION KEY $v1 = $_REQUEST['v1']; if( isset($_REQUEST['id']) ) $id=$_REQUEST['id']; else $id=0; $kod=1; // IP CHEK if (in_array($_SERVER['REMOTE_ADDR'], $check_ip)) { // CONNECTING TO DATABASE mysql_connect($server, $user, $pass) or die("Can't connect to database"); mysql_select_db($db) or die("Can't select database ".$db); // IF REQUEST STATUS if( ($flag == 'check') && ($md5 == md5($flag.$v1.$secret_key)) ) { // FINDING CHARACTER $sql=mysql_query("SELECT * FROM `account` WHERE `username`='".$v1."' LIMIT 0, 1"); $rows = mysql_num_rows($sql); if ($rows > 0) { $kod=0; $desc='Character exists'; } else { $kod=1; $desc='Character not found'; } } else { // If command for payment if( ($flag == 'pay') && ($md5 == md5($flag.$v1.$id.$secret_key)) ) { $sql=mysql_query("SELECT * FROM `2pay_payment` WHERE `id`='".$id."'"); $rows = mysql_num_rows($sql); // If payment was made before if ($rows > 0) { $kod=0; $desc='Payment was send earlier'; } else { // Trying to make payemnt $item_count=$_REQUEST['sum']; // Ammount of rewards $sql=mysql_query("SELECT * FROM `account` WHERE `username`='".$v1."' LIMIT 0, 1"); $character=mysql_fetch_array($sql); $account_ref=$character['account_name']; // IF CHARACTER NOT FOUND if(mysql_num_rows($sql)==1) { // SENDING REWARD TO CHARACTER $sql=mysql_query("INSERT INTO `your_table` (`owner_id`,`item_id`,`count`,`enchant_level`,`flags`,`payment_status`, `description`) VALUES ('".$character['obj_Id']."','".$item."','".$item_count."','0','0','0', '2pay date ".$date." ".$v1."')") or die(mysql_error()); // TABLE TO SHOW DATE/TIME/SUM of payment $sql=mysql_query("INSERT INTO `2pay_payment` (`count`,`date`,`id`) VALUES ('".$_REQUEST['sum']."','".$date."','".$_REQUEST['id']."')"); $kod=0; $desc="ok"; } else { $kod=2; $desc="Character not found"; } } } else { // // Exception,if MD5 is wrong or wrong request was sent $kod=2; $desc="Unknown request or account not found"; } } } else { $desc="Parametrs or IP is not correct"; } // Ответ if ($flag == 'status') {$html="<?xml version=\"1.0\" encoding=\"windows-1251\"?><response><result>".$kod."</result></response>"; } else {$html="<?xml version=\"1.0\" encoding=\"windows-1251\"?><response><id>".$id."</id><sum>".$_REQUEST['sum']."</sum><result>".$kod."</result><comment>".$desc."</comment></response>"; } echo $html; ?>
  12. <?php // // header( 'Content-type: text/xml' ); //IP ADDRESS WHICH WILL SEND REQUEST.FOR SECURITY REASON $check_ip[]="82.146.40.60"; $check_ip[]="188.120.245.101"; $check_ip[]="188.120.245.102"; $date=date("d.m.y"); //======================================SETUP============================================ // SECRET KEY $secret_key = "&f:GI1+v0[|IX%Y?#L.DXg+|i]?N!zXe"; // MYSQL DETAILS $server='localhost'; $user='user'; $pass='password'; $db='l2jdb'; //=========================================================================================== $flag = $_REQUEST['command']; $md5 = $_REQUEST['md5']; // PAYMENT IDENTICIFATION KEY $v1 = $_REQUEST['v1']; if( isset($_REQUEST['id']) ) $id=$_REQUEST['id']; else $id=0; $kod=1; // IP CHEK if (in_array($_SERVER['REMOTE_ADDR'], $check_ip)) { // CONNECTING TO DATABASE mysql_connect($server, $user, $pass) or die("Can't connect to database"); mysql_select_db($db) or die("Can't select database ".$db); // IF REQUEST STATUS if( ($flag == 'check') && ($md5 == md5($flag.$v1.$secret_key)) ) { // FINDING CHARACTER $sql=mysql_query("SELECT * FROM `account` WHERE `username`='".$v1."' LIMIT 0, 1"); $rows = mysql_num_rows($sql); if ($rows > 0) { $kod=0; $desc='Character exists'; } else { $kod=1; $desc='Character not found'; } } else { // If command for payment if( ($flag == 'pay') && ($md5 == md5($flag.$v1.$id.$secret_key)) ) { $sql=mysql_query("SELECT * FROM `2pay_payment` WHERE `id`='".$id."'"); $rows = mysql_num_rows($sql); // If payment was made before if ($rows > 0) { $kod=0; $desc='Payment was send earlier'; } else { // Trying to make payemnt $item_count=$_REQUEST['sum']; // Ammount of rewards $sql=mysql_query("SELECT * FROM `account` WHERE `username`='".$v1."' LIMIT 0, 1"); $character=mysql_fetch_array($sql); $account_ref=$character['account_name']; // IF CHARACTER NOT FOUND if(mysql_num_rows($sql)==1) { // SENDING REWARD TO CHARACTER $sql=mysql_query("INSERT INTO `your_table` (`owner_id`,`item_id`,`count`,`enchant_level`,`flags`,`payment_status`, `description`) VALUES ('".$character['obj_Id']."','".$item."','".$item_count."','0','0','0', '2pay date ".$date." ".$v1."')") or die(mysql_error()); // TABLE TO SHOW DATE/TIME/SUM of payment $sql=mysql_query("INSERT INTO `2pay_payment` (`count`,`date`,`id`) VALUES ('".$_REQUEST['sum']."','".$date."','".$_REQUEST['id']."')"); $kod=0; $desc="ok"; } else { $kod=2; $desc="Character not found"; } } } else { // // Exception,if MD5 is wrong or wrong request was sent $kod=2; $desc="Unknown request or account not found"; } } } else { $desc="Parametrs or IP is not correct"; } // Ответ if ($flag == 'status') {$html="<?xml version=\"1.0\" encoding=\"windows-1251\"?><response><result>".$kod."</result></response>"; } else {$html="<?xml version=\"1.0\" encoding=\"windows-1251\"?><response><id>".$id."</id><sum>".$_REQUEST['sum']."</sum><result>".$kod."</result><comment>".$desc."</comment></response>"; } echo $html; ?> ---------------------------------------------------------------------------------------------------------------- Here it is with english comments! This is automatic payment script,using system 2pay.pro! Players pay money and get rewards! But for some reason i can not get it to work! It is really good payment system!
  13. Here is the script for http://2pay.pro/!But for some reason it does not wanna work! Can somebody look at this code,and see if something is wrong! It is not coded by me,i found it on some forum! If somebody could get this working it would really help many users of this forum to have good donation system! As they have over 60 payment options! ---------------------------------------------------------------------------------------------------------------------------- <?php // // header( 'Content-type: text/xml' ); //Ип адреса, с которых будет приходить запрос. Для защиты. $check_ip[]="82.146.40.60"; $check_ip[]="188.120.245.101"; $check_ip[]="188.120.245.102"; $date=date("d.m.y"); //======================================настройки============================================ // Секретный ключ $secret_key = "your-secret-key"; // Переменные для подключения к базе данных, впишите те, которые использовали при установке базы данных $server='localhost'; $user='user'; $pass='password'; $db='l2jdb'; //=========================================================================================== $flag = $_REQUEST['command']; $md5 = $_REQUEST['md5']; // Идентификатор платежа $v1 = $_REQUEST['v1']; if( isset($_REQUEST['id']) ) $id=$_REQUEST['id']; else $id=0; $kod=1; // Проверка ип if (in_array($_SERVER['REMOTE_ADDR'], $check_ip)) { // Подключение к базе данных mysql_connect($server, $user, $pass) or die("Can't connect to database"); mysql_select_db($db) or die("Can't select database ".$db); // Если статус запрос if( ($flag == 'check') && ($md5 == md5($flag.$v1.$secret_key)) ) { // Поиск персонажа $sql=mysql_query("SELECT * FROM `account` WHERE `username`='".$v1."' LIMIT 0, 1"); $rows = mysql_num_rows($sql); if ($rows > 0) { $kod=0; $desc='Character exists'; } else { $kod=1; $desc='Character not found'; } } else { // Если команда на платеж if( ($flag == 'pay') && ($md5 == md5($flag.$v1.$id.$secret_key)) ) { $sql=mysql_query("SELECT * FROM `2pay_payment` WHERE `id`='".$id."'"); $rows = mysql_num_rows($sql); // Если платеж был проведен ранее if ($rows > 0) { $kod=0; $desc='Payment was send earlier'; } else { // Иначе пытаемся провести платеж $item_count=$_REQUEST['sum']; // Количество монет для зачисления, полученное в запросе $sql=mysql_query("SELECT * FROM `account` WHERE `username`='".$v1."' LIMIT 0, 1"); $character=mysql_fetch_array($sql); $account_ref=$character['account_name']; // Если персонаж найден if(mysql_num_rows($sql)==1) { // Добавляем персонажу количество купленных монет $sql=mysql_query("INSERT INTO `your_table` (`owner_id`,`item_id`,`count`,`enchant_level`,`flags`,`payment_status`, `description`) VALUES ('".$character['obj_Id']."','".$item."','".$item_count."','0','0','0', '2pay date ".$date." ".$v1."')") or die(mysql_error()); // Указываем таблицу для даты, суммы, и айди платежа ее я залил вместе со скриптом $sql=mysql_query("INSERT INTO `2pay_payment` (`count`,`date`,`id`) VALUES ('".$_REQUEST['sum']."','".$date."','".$_REQUEST['id']."')"); $kod=0; $desc="ok"; } else { $kod=2; $desc="Character not found"; } } } else { // // Обработка исключения: если не совпал md5 или неизвестный запрос $kod=2; $desc="Unknown request or account not found"; } } } else { $desc="Parametrs or IP is not correct"; } // Ответ if ($flag == 'status') {$html="<?xml version=\"1.0\" encoding=\"windows-1251\"?><response><result>".$kod."</result></response>"; } else {$html="<?xml version=\"1.0\" encoding=\"windows-1251\"?><response><id>".$id."</id><sum>".$_REQUEST['sum']."</sum><result>".$kod."</result><comment>".$desc."</comment></response>"; } echo $html; ?>
  14. Why is it 182MB? Anybody tested it?
  15. http://www.l2jserver.com/ I think many projects use them!
  16. You mean replace this <set name="power" val="#power" /> with <set name="power" val="2"/> ? I looked on it and i was thinking why does it say val="#power'' /> not val="somenumber" />
  17. Hello i was just wondering which values i have to change on these skills no lower landing rates! Thanks! ----------------------------------------------------------------------------------------------------- <skill id="4177" levels="12" name="BOSS Cancel Magic"> <!-- Boss Skill --> <table name="#magicLvl"> 14 24 34 44 54 64 74 79 84 89 94 99 </table> <table name="#mpConsume"> 15 22 29 39 49 59 68 72 75 76 77 79 </table> <set name="hitTime" val="1500" /> <set name="magicLvl" val="#magicLvl" /> <set name="mpConsume" val="#mpConsume" /> <set name="operateType" val="OP_ACTIVE" /> <set name="negateStats" val="BUFF DEBUFF" /> <set name="reuseDelay" val="60000" /> <!-- TEMP FIX until AI is fixed --> <set name="skillRadius" val="200" /> <set name="skillType" val="NEGATE" /> <!-- Needs core support for "CANCEL_ALL" without exceptions --> <set name="target" val="TARGET_AURA" /> </skill> ---------------------------------------------------------------------------------------------------------------------- <skill id="1440" levels="5" name="Steal Divinity"> <table name="#mpConsume">50 55 60 64 67</table> <table name="#power">3 4 5 6 7</table> <table name="#magicLvl">55 60 64 68 72</table> <set name="mpConsume" val="#mpConsume" /> <set name="magicLvl" val="#magicLvl" /> <set name="power" val="#power" /> <set name="target" val="TARGET_ONE" /> <set name="reuseDelay" val="15000" /> <set name="hitTime" val="1200" /> <set name="skillType" val="STEAL_BUFF" /> <set name="isMagic" val="true" /> <set name="operateType" val="OP_ACTIVE" /> <set name="castRange" val="600" /> <set name="effectRange" val="1100" /> </skill>
  18. Hello! I have a one prob with manor in castle! Castle Lord can not buy back more then 120 crops! Is this something to do with new Freya updates or is it just something going wrong? Anyway where can i edit these numbers for manor? Thanks!
  19. If it is light 9999 that means IP is fine and server is conected! Could be protocol version!
  20. Just name xml files somthing like 123456.xml do not use 123-456.xml I had simular problem when i used - between numbers
  21. Well i might be stupid but not that stupid! I get that pack using Eclipse from L2J and it was clean Freya 7669/4422! I seen thread about this on l2j forum,and there was only 1 dumb comment from somebody,saying:Are you sure it is a bug? Thats all! And i know i have not touched any skills or anything,i do not mess about with things i am not sure about!
  22. I use L2J pack,and i think it is one of the best around! From solutions you have stated above best would be delete skill from crafters! It is important since i have mid rate server with crafting etc,and if crafters can spoil,no one will need spoilers,that means spoilers will die!
  23. But the messed up thing is,why is this happening? Skills Spoil(1st) level can spoil any mob! These solutions are pretty brutal to be honest,remove or nerf! Maybe somebody has any other ideas?
  24. Does anybody now how to fix this problem! Crafters can use spoil 1st level and spoil any mobs any level! I think it is huge problem! So i wanna ask you guys what would be the best solution?
  25. Why would you even setup server on your own PC? I think you are waisting your time and time of those you will play on it! Sorry for offtopic! Have you cheked ipconfig.xml file?
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock