|
You last visited: Today at 06:33
Advertisement
Shakes & Fidget Private - Full Script (Tulyita)
Discussion on Shakes & Fidget Private - Full Script (Tulyita) within the Browsergames forum part of the Other Online Games category.
05/22/2014, 22:32
|
#481
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
nice idea.. with the papaya_cfg.php.
the safest way would be to recheck it with the password.
put the playerid from the $_GET-Requeset ?player=<$playerid> into a hidden $_POST-form
// blaa you really want to do XY enter your password here..
PHP Code:
<?
$uid = mysql_real_escape_string($_GET['player']);
?>
<input type="hidden" name="uid" value="<?=$uid?>" />
|
|
|
05/22/2014, 22:52
|
#482
|
elite*gold: 0
Join Date: May 2014
Posts: 93
Received Thanks: 74
|
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ
nice idea.. with the papaya_cfg.php.
the safest way would be to recheck it with the password.
put the playerid from the $_GET-Requeset ?player=<$playerid> into a hidden $_POST-form
// blaa you really want to do XY enter your password here..
PHP Code:
<? $uid = mysql_real_escape_string($_GET['player']); ?>
<input type="hidden" name="uid" value="<?=$uid?>" />
|
Solved and Coded XD
DUNGEON RESET SCRIPT BY CRASIM
GUIDE:
Extract all File on Directory Site(Server)
Download:
Contact me for all Support.
|
|
|
05/22/2014, 22:59
|
#483
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
Thx for sharing but in fact you didnt solve the problem i explained.. ill show you on your server.
|
|
|
05/22/2014, 23:02
|
#484
|
elite*gold: 0
Join Date: May 2014
Posts: 93
Received Thanks: 74
|
Obviously, the problem of the reset to other user is always possible. But at least so you can avoid some is not all the user know about it.  Of course the use of my script is at your own RISK.
NEW Project script: Now I'm working on a new script for changing user class.
|
|
|
05/22/2014, 23:02
|
#485
|
elite*gold: 0
Join Date: Mar 2014
Posts: 216
Received Thanks: 22
|
Me too thanks for script
|
|
|
05/22/2014, 23:15
|
#486
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
Give me an hour and ill provide a fixed version.
|
|
|
05/22/2014, 23:19
|
#487
|
elite*gold: 0
Join Date: May 2014
Posts: 93
Received Thanks: 74
|
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ
Give me an hour and ill provide a fixed version. 
|
ok ^^ I work in the meantime, the last script to change class today then tomorrow I see is to come up with another ahaha
TIPS FOR ANYONE TO SCRIPT OR OTHERWISE CONTACT ME.
WARNING: I am wrong before is I did not put the file functions.php needed to serve the script of the dungeon. DOWNLOAD again from the same link you will find the functions.php file where you have to put your credentials to connect to the database.
|
|
|
05/22/2014, 23:58
|
#488
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
Again thx for sharing Crasim
Here now the fixed dungeon.php with password-protection
PHP Code:
<?php
include('../functions.php');
if(isset($_GET['player']))
{
$uid = mysql_real_escape_string($_GET['player']);
$row = mysql_fetch_array(mysql_query("SELECT user_name FROM user_data WHERE user_id='". $uid ."' LIMIT 1"));
$username = $row['user_name'];
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="de" dir="ltr">
<title>Dungeon Reset</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta name="author" content="Playa Games GmbH">
<meta name="publisher" content="Playa Games GmbH">
<meta name="copyright" content="Copyright 2011 Playa Games GmbH">
<meta name="keywords" content="browser games, browsergames, mmorpg, online game, online games, online games kostenlos, online rollenspiel, online rollenspiele, onlinegames, onlinespiel, browsergame, browsergames kostenlos, browserspiele, kostenlose mmorpg, mmorpg online games">
<meta name="description" content="Das lustige Shakes & Fidget Spiel">
<style type="text/css">
body {
background:url(../res/background.jpg);
background-repeat:no-repeat;
background-position:top center;
background-color:#000000;
font-family: Tahoma, Arial, Helvetica, sans-serif;
color: #FFFFFF;
margin: 188px auto auto 0;
}
a:link { text-decoration:none; color:#ffd9aa; }
a:visited { text-decoration:none; color:#ffd9aa; }
a:hover { text-decoration:underline; color:#ffd9aa; }
a:active { text-decoration:none; color:#ffd9aa; }
a:focus { text-decoration:none; color:#ffd9aa; }
h1{
font-size: 1.2em;
font-weight: bold;
padding:0;
margin:0;
margin-bottom: 0.5em;
}
.imprint2 {
margin-top: 130px;
color: #000000;
}
.imprint2 a {
color: #000000;
text-decoration: underline;
}
input[type=text], textarea, input[type=password] {
border: 1px solid #929292;
color: #929292;
padding: 10px;
vertical-align: text-top;
width: 300px;
-webkit-box-shadow: #e3e3e3 0.1em 0.1em 0.2em;
box-shadow: #e3e3e3 0.1em 0.1em 0.2em;
-moz-box-shadow: #e3e3e3 0.1em 0.1em 0.2em;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-border-radius: 5px;
-khtml-border-radius: 5px;
background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
}
input[type=submit] {
border: 1px solid #929292;
color: #000;
font-weight: bold;
padding: 10px;
vertical-align: text-top;
width: auto;
-webkit-box-shadow: #e3e3e3 0.1em 0.1em 0.2em;
box-shadow: #e3e3e3 0.1em 0.1em 0.2em;
-moz-box-shadow: #e3e3e3 0.1em 0.1em 0.2em;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-border-radius: 5px;
-khtml-border-radius: 5px;
background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
}
</style>
</head>
<body>
<center>
<table align="center" width="570px" style="font-family: Tahoma, Arial, Helvetica, sans-serif; color: #FFFFFF;">
<tbody>
<tr>
<td style="padding: 0; margin:0">
<div style="overflow: auto; height: 360px; padding: 10px">
<br><br><br>
<?php
if(!isset($_POST["doit"]))
{
?>
<center>
<h1>Hi <b><?=$username?></b>!</h1>
<br>
You are about to reset all dungeons. To confirm please enter your password.
<br><br>
<form action="<?=$_SERVER["PHP_SELF"] ?>" method="post" enctype="multipart/form-data" target="_self">
<input type="password" name="password" size="10" value=""><br><br>
<input type="submit" value="Confirm!" name="button">
<input type="hidden" name="doit" value="yes" />
<input type="hidden" name="uid" value="<?=$uid?>" />
</form>
</center>
<?php
}
if(isset($_POST["doit"]))
{
$userid = $_POST["uid"];
$pass = $_POST["password"];
$row = mysql_fetch_array(mysql_query("SELECT password FROM user_data WHERE user_id='". $userid ."' LIMIT 1"));
if($row["password"] == md5($pass))
{
mysql_query("UPDATE user_data
SET dungeon_1 = '0' , dungeon_2 = '0', dungeon_3 = '0', dungeon_4 = '0', dungeon_5 = '0', dungeon_6 = '0', dungeon_7 = '0', dungeon_8 = '0', dungeon_9 = '0', dungeon_10 = '0', dungeon_11 = '0', dungeon_12 = '0', dungeon_13 = '0', tower_level = '0'
WHERE user_id = '" . $userid . "' LIMIT 1");
echo '<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=../">';
}
else
{
echo '<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=../">';
}
}
?>
</div>
</td>
</tr>
</tbody>
</table>
</center>
</body>
</html>
|
|
|
05/23/2014, 00:18
|
#489
|
elite*gold: 0
Join Date: May 2014
Posts: 93
Received Thanks: 74
|
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ
Again thx for sharing Crasim
Here now the fixed dungeon.php with password-protection
PHP Code:
<?php include('../functions.php');
if(isset($_GET['player'])) { $uid = mysql_real_escape_string($_GET['player']); $row = mysql_fetch_array(mysql_query("SELECT user_name FROM user_data WHERE user_id='". $uid ."' LIMIT 1")); $username = $row['user_name']; } ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="de" dir="ltr"> <title>Dungeon Reset</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="expires" content="0"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="pragma" content="no-cache"> <meta name="author" content="Playa Games GmbH"> <meta name="publisher" content="Playa Games GmbH"> <meta name="copyright" content="Copyright 2011 Playa Games GmbH"> <meta name="keywords" content="browser games, browsergames, mmorpg, online game, online games, online games kostenlos, online rollenspiel, online rollenspiele, onlinegames, onlinespiel, browsergame, browsergames kostenlos, browserspiele, kostenlose mmorpg, mmorpg online games"> <meta name="description" content="Das lustige Shakes & Fidget Spiel"> <style type="text/css"> body { background:url(../res/background.jpg); background-repeat:no-repeat; background-position:top center; background-color:#000000; font-family: Tahoma, Arial, Helvetica, sans-serif; color: #FFFFFF; margin: 188px auto auto 0; } a:link { text-decoration:none; color:#ffd9aa; } a:visited { text-decoration:none; color:#ffd9aa; } a:hover { text-decoration:underline; color:#ffd9aa; } a:active { text-decoration:none; color:#ffd9aa; } a:focus { text-decoration:none; color:#ffd9aa; } h1{ font-size: 1.2em; font-weight: bold; padding:0; margin:0; margin-bottom: 0.5em; } .imprint2 { margin-top: 130px; color: #000000; } .imprint2 a { color: #000000; text-decoration: underline; } input[type=text], textarea, input[type=password] { border: 1px solid #929292; color: #929292; padding: 10px; vertical-align: text-top; width: 300px; -webkit-box-shadow: #e3e3e3 0.1em 0.1em 0.2em; box-shadow: #e3e3e3 0.1em 0.1em 0.2em; -moz-box-shadow: #e3e3e3 0.1em 0.1em 0.2em; -webkit-border-radius: 5px; -moz-border-radius: 5px; -border-radius: 5px; -khtml-border-radius: 5px; background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF)); background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px); } input[type=submit] { border: 1px solid #929292; color: #000; font-weight: bold; padding: 10px; vertical-align: text-top; width: auto; -webkit-box-shadow: #e3e3e3 0.1em 0.1em 0.2em; box-shadow: #e3e3e3 0.1em 0.1em 0.2em; -moz-box-shadow: #e3e3e3 0.1em 0.1em 0.2em; -webkit-border-radius: 5px; -moz-border-radius: 5px; -border-radius: 5px; -khtml-border-radius: 5px; background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF)); background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px); } </style>
</head> <body> <center> <table align="center" width="570px" style="font-family: Tahoma, Arial, Helvetica, sans-serif; color: #FFFFFF;"> <tbody> <tr> <td style="padding: 0; margin:0"> <div style="overflow: auto; height: 360px; padding: 10px"> <br><br><br> <?php if(!isset($_POST["doit"])) { ?> <center> <h1>Hi <b><?=$username?></b>!</h1> <br> You are about to reset all dungeons. To confirm please enter your password. <br><br> <form action="<?=$_SERVER["PHP_SELF"] ?>" method="post" enctype="multipart/form-data" target="_self"> <input type="password" name="password" size="10" value=""><br><br> <input type="submit" value="Confirm!" name="button"> <input type="hidden" name="doit" value="yes" /> <input type="hidden" name="uid" value="<?=$uid?>" /> </form> </center> <?php }
if(isset($_POST["doit"])) { $userid = $_POST["uid"]; $pass = $_POST["password"]; $row = mysql_fetch_array(mysql_query("SELECT password FROM user_data WHERE user_id='". $userid ."' LIMIT 1"));
if($row["password"] == md5($pass)) { mysql_query("UPDATE user_data SET dungeon_1 = '0' , dungeon_2 = '0', dungeon_3 = '0', dungeon_4 = '0', dungeon_5 = '0', dungeon_6 = '0', dungeon_7 = '0', dungeon_8 = '0', dungeon_9 = '0', dungeon_10 = '0', dungeon_11 = '0', dungeon_12 = '0', dungeon_13 = '0', tower_level = '0' WHERE user_id = '" . $userid . "' LIMIT 1"); echo '<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=../">'; } else { echo '<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=../">'; } } ?> </div> </td> </tr> </tbody> </table> </center> </body> </html>
|
good job.  I updated my server is using the same system for tomorrow script UserClass changer anyway if I can give you some advice you should use this:
PHP Code:
echo '<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=../">';
change with ->
PHP Code:
echo '<script>window.close();</script>'; // for new browser echo '<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=../">'; // for old browser
|
|
|
05/23/2014, 07:04
|
#490
|
elite*gold: 0
Join Date: Nov 2013
Posts: 167
Received Thanks: 57
|
You can also make instead of pilzdealer reset dungeons im gonna post the code today
|
|
|
05/23/2014, 07:42
|
#491
|
elite*gold: 0
Join Date: May 2014
Posts: 93
Received Thanks: 74
|
Quote:
Originally Posted by EptunLP
You can also make instead of pilzdealer reset dungeons im gonna post the code today
|
I did not understand sorry
|
|
|
05/23/2014, 07:50
|
#492
|
elite*gold: 0
Join Date: Jun 2011
Posts: 149
Received Thanks: 26
|
Crasim, ignore him this is czech noob nothing make own and his say for make reset dungeon without mushroom dealer..
|
|
|
05/23/2014, 07:55
|
#493
|
elite*gold: 0
Join Date: May 2014
Posts: 38
Received Thanks: 13
|
I did not sh*t right for a lvl up on helpers so I made litle easy script.. video here:
|
|
|
05/23/2014, 08:39
|
#494
|
elite*gold: 0
Join Date: Mar 2014
Posts: 216
Received Thanks: 22
|
Přesně
|
|
|
05/23/2014, 09:56
|
#495
|
elite*gold: 0
Join Date: Nov 2013
Posts: 167
Received Thanks: 57
|
Quote:
Originally Posted by lubie4story
Crasim, ignore him this is czech noob nothing make own and his say for make reset dungeon without mushroom dealer..
|
I see who is noob you are noob it is possible to make reset dungeons without mushroom dealer instead of ret in request.php make simple qry in case $ACT_SCREEN_PILZDEALER -_-
Then you know what guys fu** you im never gonna post any file or code here
Then you know what guys fu** you im never gonna post any file or code here
|
|
|
Similar Threads
|
Shakes & Fidget Private - Final Script (Tower, Toilet, Witch, Epic)
04/23/2014 - Browsergames - 179 Replies
http://www.elitepvpers.com/forum/browsergames-trad ing/3227782-shakes-fidget-private-request-php-toil et-epics-etc.html
//closed
|
Shakes and Fidget Acc. Full Epic
09/28/2012 - Browsergames Trading - 0 Replies
Hallo,
Ich verkaufe hier einen shakes and fidget acc. level 123 auf dem deutschen server 2.
Er ist full epic bis auf die waffe.
Und er ist Kundi, nur eine 25€ paysafecard.
|
All times are GMT +1. The time now is 06:33.
|
|