
WizZy™
Members-
Posts
1,515 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by WizZy™
-
Well i saw some fake popups that shows you u have a virus ,so i didn't find any web ones..So i decided to make some ^^ Well i`ll use prompt , alert and confrim script. The first one alert type .. First open a notepad file ,then type this <html> <head> </head> <body> <script type="text/javascript"> window.alert ("You were just hacked!!!") window.alert ("go Q_Q in www.maxcheaters.com") window.alert ("Lawl stupid script was fake :D") </script> </body> </html> Save it as .htm file or .html nvm. Second one using confrim (i prefer this :D).Open notepad and write this <html> <head> </head> <body> <script type="text/javascript"> var hacked=window.confirm("Hahaha just gone on your PC! What will u do?") if (hacked) window.alert("Heh so you aren't scared...? Go tell ur mommy as fast as u can !!") else window.alert("You wont get rid of me kiddo!!") window.alert("You wont get rid of me kiddo!!") window.alert("You wont get rid of me kiddo!!") window.alert("You wont get rid of me kiddo!!") </script> </body> </html> This is pretty nice - i`ll give some explanations. Well it will show u this text and if u click OK it will display : if (hacked) first alert. If you click cancel it will show u You wont get rid of me Kiddo!!.. Well because you don't want to be rid of the fake popups :D Add as much as u can so he get bored clicking ok and displaying same (or u can change the following messages.. :D) And the prompt script ,also called Echo script.Because when u write something , it returns it back to ya :D <html> <head> </head> <body> <script type="text/javascript"> var ime=window.prompt("You were just hacked!What will u do to me? Kill me or smth?Tell me bad stuff.. :S") window.alert(ime) </script> </body> </html> This script actually sux ,but its usefull in some situations.. Thanks for viewing :D and i`ll add more soon.
-
Okay i cleaned my PC ALOT and its like -5 celsius... So what do u think guys :
-
lol pwning one :D:D axh0
-
Hah they're kinda cute love them!
-
This is retard.. Better to learn some flash and then post a flash guide and making web.
-
I had watercooling on last pc and i said it goodbye.. Damn recommend me a good fans and the price if possible..
-
Damn hnw to make this pc cooler? I mean the fans .. I have 4 and still 35 c.. How to make em work ? Ps pc not restarted for 20 days mabey more.. Does this matter?
-
i have 4 coolers lol.. 2 on side 1 at back and 1 for video..
-
Thanks for the comments guys, i'll continue it on monday because im typing from my iPhone , so cant make it now. I'll create advanced one too, just to come back to home :/ thanks again for comments.
-
Hey guys!I`m bored and have nothing to do,so many people have problems with they'r site coding (php) and i wanted to let u know the basics.. First of all , most of it wants a SQL connection.You can create it using this : <?php $user = "root"; //Your MySQL user $pass = "pass"; //Your MySQL Password $db = "hack"; //Your MySQL database $host = "localhost"; // Your MySQL address (its as default) $connection = mysql_connect($host, $user, $pass) or die("Error with MySQL connecting"); // AIO connect $db = mysql_select_db($db,$connection)or die("Error with MySQL connecting2"); // database connect $chars="set character set latin1"; //set chars mysql_query($chars); // mysql query for chars ?> Its a simple SQL connector.So we are proceeding.. How to read SQL file thru web? Its simple one ,just configurate it by your needs. But you need a config file like conf.php and including it in each page ,so this file can connect to mysql. just type <?php include "FILE.php"; ?> So here just change FILE to conf (like i said) and it will include it in each page you write that. <?php include "conf.php"; $query="SELECT * FROM reports ORDER by id DESC LIMIT 1"; // Selection of SQL table and column $result=mysql_query($query); // Getting query while ( $r = mysql_fetch_array( $result )){ // The result $some1=$r['some1']; // Description $some2=$r['some2']; // Description $some3=$r['some3']; // Description $some4=$r['some4']; // Description echo"<br>$some1"; echo "<br>$some2"; echo "<br>$some3"; echo "<br>$some4"; } ?> Easy one ,Huh? So enough mysql.. Lets do some other basics. Like in other sites they have a config.php file.Why do they need it? I use it to make a called VARS.These are like <?php $var1 = "Hello world!I`m php!"; echo "$var1"; ?> $var1 is the displaying text and this after it is the real text.I am using ECHO to get the var into a text.You can do same for other functions ,but this is basic. Okay a simple protection i`ll post below.Everyone knows what it means and its useful for some pages you don't want users to view.Here is it <?php include('conf.php'); session_start(); $name[] = "user1"; $pass[] = "pass1"; // Username for login 1 $name[] = "user2"; $pass[] = "pass2"; // Username for login 2 //You can add as much users you want. function loginform(){ //The form that unlogged users will use echo '<fieldset style="padding: 2">'; echo '<legend>Login</legend>'; echo '<form method=post action="?">'; echo 'Name: <input type=text name=username value="' . $_POST[username] . '">'; //The name echo '<br>'; echo 'Pass: <input type=password name=pass>'; //The password echo '<br>'; echo '<input type=submit name="s1" value="Login">'; // The submit button echo '</form>'; echo '</fieldset>'; } if($_GET['action'] == "logout"){ // Logging out $_SESSION['loggedin'] = false; $_SESSION['username'] = ""; } if($_SESSION['loggedin'] == false){ // Protection from NULL logins if(!$_POST['s1']){ loginform(); }else{ $tmpname = $_POST['username']; #the username the user has submitted $tmppass = $_POST['pass']; #the password the user has submitted $t = count($name); #count the total users $i = 0; while($i <= $t){ if($tmpname == $name[$i] && $tmppass == $pass[$i]){ //Checking $_SESSION['loggedin'] = true; $_SESSION['username'] = $name[$i]; header('Location: ?'); #reload the page } $i++; } echo "Your attempt is invalid."; //If something is wrong loginform(); #show the form } die; // if something is wrong , destroy it } ?> <center><br>Welcome <?php echo $_SESSION['username']; ?> <br><a href="?action=logout">Logout</a> . </center> <br> I included some other things like Logout and stuff.. So anyway a simple code ,who records all IP's viewed the page you included it. <?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.</b>"; // if successful ?> This will record every IP viewed your page in a file called ipadmin.txt . You can change it ofcourse. Okay one more script.I called it Redirecting script ,because its redirecting u :D Here it is : <?php $url = ''; // ULR GOES HERE EDIT IT! while (list($var,$val) = each($HTTP_GET_VARS)) $url .= "&$var=$val"; $i = strpos($url, "&url="); if ($i !== false) $url = substr($url, $i + 5); if (substr($url, 0, 4) == "www.") $url = "http://" . $url; print("<html><head><meta http-equiv=refresh content='0;url=$url'></head><body>\n"); print("<table border=0 width=100% height=100%><tr><td><h2 align=center>Currently moving to:<br>\n"); print("$url</h2></td></tr></table></body></html>\n"); ?> It can be done alot easyer ,but this is with PHP.Html is ALOT easyer. How to get some info's from another site? Another simple code. <?php $url="http://BLABLA.com/INFO.php"; // Edit this link to get the info from. $string = file_get_contents($url); $edno=explode('<div align="left">',$string); $dve=explode('</div></td>',$edno[1]); echo $dve[0]; ?> Okay i think you learned the basics.. If you wanna just write them to remember them faster lol :D Lol i`m making this topic about 16 mins :D Anyway thanks for viewing it. I`ll make an advanced guide after a few days.
-
[GUIDE] How To Make Your Own Website (Advanced)
WizZy™ replied to DragonHunter's topic in Guides & Tutorials
I prefer dreamweaver.. But for some fast codes notepad ^^ I can post a guide for PHP but after a day or two i`m going to a vacation :) Nice guide for newbies ^^ -
Here are the screens : http://img194.imageshack.us/img194/5945/cupz.jpg[/img]
-
Well i need someone to help me with this.I`m retard ,i can't do it myself ,so i can give teamviewer to someone who knows how to do it.Thanks a lot !If its some mods in my junkbox i can do it just gimme instructions.If i don't write back ,i`m mabey dead (electricity shock)
-
First of all ,thanks for viewing this topic. Its an interlude pack. This is a PvP configurated server ,so you may not wanna use it for low-rate servers. It has 21h+ buffs and many other customs that are shown a bit downer. ================================== Admin account : admin Admin password : mxc ================================== This server classes ARE balanced!What did i do? I added a passive skill , who gives and takes stats for each class.I think its okay,balance approved.If you find an overpowered class or weak one , pls pm me on MxC (Leeroy).Thanks. ================================== NPC ID : 30123 - Special PK guard (credits to me) 40006 - NPC Buffer (l2joneo's edited by stefoulis15 from mxc) 7661 - Special trader (credits to me) 70002 - Special GK (l2joneo's but edited alot by me) 53 - GM Shop (from l2dot pack ,dunno the credits) ================================== Custom Items ID : 20000 Volcano Spear 20001 Volcano Sword 20002 Volcano Blade 20003 Volcano Dagger 20004 Volcano Blunt 20005 Volcano Cleaver 20006 Volcano Bow 20007 Volcano Mace 20008 Volcano Fists 20009 Volcano Staff 20010 Volcano Sword*Volcano Sword 20011 Volcano Blade*Volcano Blade Volcano Weapon 9830 Earth Crystal 9831 Fire Crystal 9832 Wind Crystal 9833 Water Crystal 9834 Divine Crystal 9835 Amethyst Dust 9836 Opal Dust 9837 Ruby Dust 9838 Diamond Dust 9839 Amber Dust 9840 Blood Gold 9841 Black Gold 9842 Holy Gold 9843 Ice Gold 11123 Forbidden Sword 11124 Hammer of Destroy 11125 Magical Lubris 11126 Drummis Dagger 11127 Palous Bow L2 Debo 11128 Bembers Guard Axe 11129 Shillen Spear 11130 Leguas Demons 11131 Bembers Devider 11132 Empowering Lerpus 11133 Dubleis Bow L2 Debo 9900 Vesper Gold Helmet 9901 Vesper Gold Breastplate P.Def 11%,HP +827, Sleep resist -70, Root resist -70%, DEX -5 ,STR +3, CON+2. 9441 9902 Vesper Gold Gaiters 9903 Vesper Gold Gloves 9904 Vesper Gold Boots 9905 Vesper Gold Leather Armor Atk.Speed 10% ,P.Atk 8%, MP +228 ,DEX +2,STR +2,CON -4. 9906 Vesper Gold Leggings 9907 Vesper Gold Gloves 9908 Vesper Gold Boots 9909 Vesper Gold Tunic Cast.Speed 17%, M.Atk 17%, Run Speed +10, Cancel -30%, WIT +1, INT +1, MEN -3. 9910 Vesper Gold Stockings 9911 Vesper Gold Gloves 9912 Vesper Gold Boots And silver set also , same stats. ================================== Other customs: When u die and click to village it ports you directly in giran. Instantly 80 level 100% at creating character. Custom spawn location set to giran castle town. 1 click nobless - item is Festival Adena 1 click hero ( with farming ofc) the item is Four Leaf dragon coin or smth like that. Others i will add soon... ================================== Credits to : Stefoulis15 , L2jOneo , L2Dot project , Urbanhack (vesper armors) , Vendetta server (epic token/coins) , Me (l][ debo weapons) , Kazeno (volcano weapons) And most credits to me :) ================================== I give the rights to anyone to edit it freely ,but just don't say the pack is fully yours :) Based on L2Dot! DOWNLOAD ME ================================== Installation : First go to mysql , create a table and restore my backup that is included in the pack. Second configurate the properties files by Your needs. Third go IG and use the account i told ya in the start of the topic. Thx for using my pack and pls post here if u like it ^^ I will try to fix all bugs and help all members here. ==================================
-
[HELP] Add Restriction in NPC Buffer
WizZy™ replied to rafiuskyz's question in Request Server Development Help [L2J]
This is english selection!Use ENGLISH ONLY PLEASE! -
[Gracia CT2.3 L2J] Massive War, a new unique server
WizZy™ replied to Nik's topic in Private Servers
How is it going? Any news? So i understand beta opening is tomorrow for all users?Wipes? Thanks :) -
DecayTaskManager: how get the summom max time life.
WizZy™ replied to everest-rj's question in Request Server Development Help [L2J]
If i understand you right , the max value can be even years.. :D Or just view the original source to see what is the real or should i say default value. -
[HELP] I need some help
WizZy™ replied to gregory13's question in Request Server Development Help [L2J]
And i don't even understand a word of your post.. Better learn english or use google translate.. -
[Share] Perfect Gatekeeper!!!!
WizZy™ replied to uNiQue1337's topic in Server Development Discussion [L2J]
Already shared.Use search people!! -
Ofcourse google..
-
All bugs work :D Fix the server and delete this facking vote java alerts i`ll never vote for this server.All bugs work even PHX and HlaPeX .. Don't join!
-
Atack Speed limit....
WizZy™ replied to sweetparanoid's question in Request Server Development Help [L2J]
If you want the original attack speed , just delete <set order='0x50' stat='pAtkSpd' val="#pAtkSpd"/> tab.If you want the GM speed just edit those : <table name="#pAtkSpd"> 1000 1100 1200 1301 </table>.The 1301 is the max atk spd ,so edit it by your needs (ps dont make it more than 3000 or server will stuck sometimes when you hit) -
[Requesting Help] Problem when I try to implant a Skill
WizZy™ replied to ptitlaby's question in Request Server Development Help [L2J]
It has to work 100%.I wonder where your error is.. Humm.. Check you skill_trees again if they are there. Also,it has to add it even without skill trees with //add_skill 755 .. You sure XML is in the /skill/ folder? To be sure , go IG and press ALT+G then type the skill name , use Search SKILL and if it finds it .. No probs but if it don't check everything again.No way ,it has to add it. -
[HELP] C.speed at spells etc
WizZy™ replied to Todoulis's question in Request Server Development Help [L2J]
Generaly :D use /skills/ID-ID.xml and you won't have problems.If i`m correct it has to be <set name="reuseDelay" val="13000"/> Change it like.. Humm.. 2x faster ? (Lower equal means faster reuse) .Example : <set name="reuseDelay" val="6500"/> for 2x faster time.I hope i helped. -
Stop posting same things every day people! Here is the SEAAAAAAAARCHHH BUTTON !!!