Jump to content

WizZy™

Members
  • Posts

    1,515
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by WizZy™

  1. But its fucking mine :@ How can someone can claim thats not mine when he dont even got proofs? Thats retarded.
  2. And i want proofs.. Where i found this code (that is actually mine) and posted it here? I think he have to proof it before he dekarma's me.I showed him that his code has NOTHING to do with mine and that one who he made is not working.Find a proof and then dekarma me.. Wtf is this?
  3. There are prooves that my code has nothing to do with his.Check it EDIT: here they are
  4. Cmon horus.. You didnt answer me on PM ,so i`ll write it here.I get -1 karma in this topic : http://www.maxcheaters.com/forum/index.php?topic=75242.0 for disrespecting you? Can you show me exactly where i disrespected you? Please? Thanks.
  5. if (getPvpKills() == Config.PVP_CUSTOM_SKILL_P && getKnownSkill(Config.PVP_CUSTOM_SKILL_ID) == null && Config.PVP_CUSTOM_SKILL) It is checked :) But infront of ! that it didnt work ,i used == null ,works too. P.S. I expected a flame from your side ^^
  6. Huh? Whats so unique about it?
  7. Nah i didnt.This is my first creation ,NB4L1 helped me with it (ask him if u want) ,just looked at stefoulis15's topic to see how to make it configurable thats all :) So bad that my first work and some1 thinks it copied.. feels -beep-y. But yes ,i got the idea from you ,tried to make your code ,but just didnt work at all ,gave me an error.So i asked nb4l1 to help me ,and even if he hates me.. :D he did ,so i`m happy for it ^^ EDIT : Thats your code if(this.getPvpKills() == 1000 && !this.getSkills.contains(yourskillid)) this.addSkill(skillid, skilllevel, processname 0); Thats mine if (getPvpKills() == Config.PVP_CUSTOM_SKILL_P && getKnownSkill(Config.PVP_CUSTOM_SKILL_ID) == null && Config.PVP_CUSTOM_SKILL) addSkill(SkillTable.getInstance().getInfo(Config.PVP_CUSTOM_SKILL_ID, Config.PVP_CUSTOM_SKILL_LV)); You used !this.getSkills.contains - i used another method. You used a this.addSkill without even selection from where to search it.. so it doesnt work at all. I dont want problems with you ,just prooving thats its not your copy/paste ,but i got the idea from you ;/
  8. Someone didnt read the whole topic ;)
  9. Add this :) http://www.maxcheaters.com/forum/index.php?topic=75242
  10. PVP_CUSTOM_SKILL = Boolean.parseBoolean(L2JModSettings.getProperty("PvPCustomSkill", "False")); PVP_CUSTOM_SKILL_P = Integer.parseInt(L2JModSettings.getProperty("PvPCustomSkillPoint", "0")); PVP_CUSTOM_SKILL_ID = Integer.parseInt(L2JModSettingsL2JModSettings.getProperty("PvPCustomSkillID", "0")); PVP_CUSTOM_SKILL_LV = Integer.parseInt(.getProperty("PvPCustomSkillLV", "0")); you have an error here.The last line.. You deleted the property's and you doublepasted a thing do it like this PVP_CUSTOM_SKILL = Boolean.parseBoolean(L2JModSettings.getProperty("PvPCustomSkill", "False")); PVP_CUSTOM_SKILL_P = Integer.parseInt(L2JModSettings.getProperty("PvPCustomSkillPoint", "0")); PVP_CUSTOM_SKILL_ID = Integer.parseInt(L2JModSettings.getProperty("PvPCustomSkillID", "0")); PVP_CUSTOM_SKILL_LV = Integer.parseInt(L2JModSettings.getProperty("PvPCustomSkillLV", "0")); and you wont have problems :) P.S. Guide updated :) Check it!
  11. Credits are mine.. I made it for l2equal ,but feel free to edit it though :)
  12. iTs wOrkIng pReTtY COOl aXh0Axhe0A i cAN ANnoY Kids tHAt waY ! PWnD! Lets wRItE i BIt MoRe lOl ItS SO crEePy ;d
  13. Well its a small guide ,but you can use this for a shit of things.Its a simple form that inserts data in SQL and then show's it to the admin (example).You can do ALOT of things like i did with it ,its so fucking simple and its used alot.An example is this : click.I used it as a L2 Ticketing system for reporting bugs blabla ,but if you have a good imagination you can use it for news (example).Insert the record to MySQL and then show it to the readers :) So lets see how this thingie works First make a connection to the database.I recommend for all to make a other file called "config.php" or something similiar and there will be all values for connecting etc.So here's how config file should look : <?php $user = "root"; // Database user $pass = "112233"; // Password for the database $db = "dot"; // Database name $host = "localhost"; // IP/Host to connect to the database $connection = mysql_connect($host, $user, $pass) or die("Cant connect to database1"); // Lets try to connect ,if not die(); $db = mysql_select_db($db,$connection)or die("Cant connect to database2"); // If first connection is successful ,lets conncet to the database name ,if error die(); $chars="set character set latin1"; //Charset .. You can use this if you have some problems with the encoding of your character mysql_query($chars); // To send the encoding of the character type (latin1 type) ?> That was a simple connection method ,and the most used though. Second step.How to insert to the database? Well now to establish the connection you can use this code to include the configuration file for sql <?php include "FILENAME.php"; ?> Okay now we have a database connection ,lets proceed to the importing into it. The import way is easy too ,but pls dont copy/paste it ,so you can learn it faster :) Here's how the submit form should look .. With explames in the file :) <form method="POST"> </p> <p>Value1: <br /> <input name="value" type="text" /> * </p> <input type="submit" name="button" value="Submit it!"> <?php include('FILENAME.php'); // This is the config file name.Replace it with your config file name in order to connect into database if($_POST['button']){ // Here is the button "Submit".It has a name "button" you can change it ,but it its the same.Leave it as it is $value=$_POST['value']; // This is the first value that we will insert.. If you wish to add more ,look above. //$ot=$_POST['value1']; //$izp=$_POST['value2]; //$pesen=$_POST['value3']; //$screen=$_POST['value4']; //$comment=$_POST['value5']; $query = mysql_query("INSERT INTO `table` (value) VALUES('$value')") or die(mysql_error()); // We insert the value we want.For an example i inserted the "VALUE" name ,so its named as $value. echo "Added successfuly.<br><a href=\"index.php\">Go to the index page..</a>";}?> // Successfuly added ,return to index ^^ Okay lets give explanations now. This is the value submitted.You can configurate this ,but you also gotta change the sql insert : which is configurated by If you need more than 1 value ,you can remove the // before the $value1 value and it will be enabled.But you gotta insert it in the INSERT INTO syntax too and has to look something like this : Okay i think you got it. Now how to view our already posted records in database? Well if its successful ,you can make a file called view.php (example ,you can name it w/e u want) Into this file lets export the records in this way .. Example of the file : <?php include "conf.php"; // Change it to your config file name ?> <?php $q = mysql_query("SELECT * from TABLE order by id DESC"); // Getting the query while($d = mysql_fetch_assoc($q)) { echo 'Value is : '.$d['value'].''; } ?> Lets see what we need to change First the config file name (where are the database info's) Then change the table which the file will connect P.S. If you got a ORDER BY id error ,remove the "order by id" text :) Okay ,everything we got ready from php side ,lets view the sql code now : CREATE TABLE `TABLE NAME` ( `value` varchar(999) collate latin1_swedish_ci NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=376 ; On the TABLE NAME write your table name that this code will create. Execute it with navicat or w/e you are using ,and you're done :) Extra scripts : How to write the users IP when they submit? Simple :) If you read that guide (all of it) you already know how to insert a new value.So make 1 ,and another colum in SQL by this code : ALTER TABLE tablename ADD columname varchar(250); and execute in sql after you configurate it by your needs. So make a new value in the php (with inserting in database) and @ put this in the start of the site : <?php $ip=$_SERVER['REMOTE_ADDR']; ?> and then insert the value as $ip in the sql insert syntax. How to record all visitors IP's in a text file : <?php $file = fopen('ipadmin.txt', 'a'); // opens ,create a new file with storage fwrite($file,$_SERVER['REMOTE_ADDR']."\n"); // Ip storing fclose($file); // Close the file echo "<br><b>Your ip was stored successfuly in ipadmin.txt file.</b>"; // if successful ?> If you dont want your visitors not to understand that they'r ip is recorded ,remove this echo "<br><b>Your ip was stored successfuly in ipadmin.txt file.</b>"; // if successful Thanks for all who saw it ^^ The guide is MINE and its wroten specialy for the programmers in worldb0x ,but i shared it here too :) Thanks for reading!
  14. Probably this russian again.. He sends every1 PM's (probably) with "Srry.. Are you moderator?" But when you see it the auth thingie appears.. Cya! P.S. I`m not with win 98 >.<
  15. Yep and this is not bugged.If you dont like it stop commenting and i wanna see your server:)
  16. Bishop with a bow.. You get a #1 place in our forums for jokes lol!
  17. Subclass level is now starting at 76 :) Many fixes + geodata inserted same as pathnodes to prevent BR wallshooters. We reached 50 online and its our second day :) We grow fast! Join us now :)
  18. Mabey i`ll join.. who knows o.O
  19. You're not right here.Actually DreaM rly made that and he's not the next piece of shit guy.I hope we can get you back ,Dream somehow ,but its still your opinion. //the end
  20. Actually ,bews wasn't free at all.It costed medals too ,but it wasn't so much.I removed the BEWS from shop till i increase the price ,so i don't rly know who is dumb..That guy was also soloing some RB's ,i personally saw it ,and eventho blessed enchant rate is 80% and many of them broked some ,but the max enchant was +14 with BEWS ,they made it +19 (current max) all alone with 65% chance.I don't know really who is the dumb here like achmed said.Sorry ,i though you are a good guy (when we fuck that here in mxc with your blaming) ,but i`m sure even if you we're gm (ye i know all says ME IS NAICE TO PLEYERS!) ,but sometimes you get pissed off and starting to act that way.. Like i get pissed off when i have work to do and some random is asking me "MEN WERE AR U FROM?!" 15-20 times in PM.And thats not corruption afterall ,cuz the BEWS costed 25 medals each ,so.. :) Eventho i`m gonna add the blessed for 100 medals and 20 SoP in the custom shop again AND RB jewels wont be with multisell ,just go to kill the rb (boosted like your stats:D)
  21. Sucks tho.. even the page sucks.. you get confused and dunno where to download the patch LOL!
  22. Its not a joke.. check it you can get more lvl to gm's by donating via sms.. :D
  23. And i did a shit mistake to donate there 20 euro's to get 5th level lol..
×
×
  • 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