View Full Version : (release)romanswow webpack(release)
roman10
12-28-2008, 12:37 AM
Hello I am roman. i am releasing my webpack here!
heres link for webpack.
Romanswow webpack.zip (http://www.mediafire.com/?oxizzhjdz3j)
it comes with tutorials on how to make your own logo and how to make this work.
This was made 100% by me i found the logo generator on here it wasnt by me
so im not taking credit for it! screen shots are coming soon! reply with any errors! thank you
/screenshots\
Heres what it looks like-Image of Romanswow - Photobucket - Video and Image Hosting (http://s554.photobucket.com/albums/jj432/tenyy99/?action=view¤t=lolwow.jpg)
EDIT: if u wanna test the site out. RomansWoW Register (http://romanswow.servegame.com)
nightscar
12-28-2008, 01:49 AM
I might try it sence all the repacks I try won't work >.<.
Oh crap didnt see that its a webpack >.<
roman10
12-28-2008, 05:12 AM
ill post screen shots now..
fearmeroar
12-28-2008, 04:13 PM
not really a pack more like just a SPORA
ekaros
12-28-2008, 04:20 PM
Yup nothing Interesting. ..
fredrik555
01-03-2009, 06:50 PM
Link doesnt work
roman10
01-05-2009, 08:13 AM
it works for me.
winkdog
01-05-2009, 08:38 AM
I just tried it out. It's simple, customizable, and works great! Just what I was looking for. Thanks roman.:)
Elfandor
01-05-2009, 11:35 AM
Its Not a web pack its only an account creation page,A spora!
roman10
01-05-2009, 07:10 PM
im not gonna listen to you its a webpack in my eyes.
codeyb
01-06-2009, 12:10 AM
I like this. +rep
roman10
01-07-2009, 09:06 AM
im making a new one very soon. but im gonna test around a little
kid7770
02-15-2009, 04:46 AM
where do you put the files?
X-StatiK
02-15-2009, 04:56 AM
this it spora ><
roman10
04-21-2009, 03:14 AM
yeah my webpacks r good but u should see my repack im working on! its gonna be pure fun! instant 80 all gold u need t7 vendors! almost everything
it will be released very soon
Mikeambrose3
04-21-2009, 03:19 AM
nice job
Sikilde
04-21-2009, 03:19 AM
So your repack gonna be like almost every other server out there? -.-'
However, I think I have seens this Account Page before somewhere.
roman10
04-21-2009, 03:25 AM
So your repack gonna be like almost every other server out there? -.-'
However, I think I have seens this Account Page before somewhere.
would you care to show me the link? dont you see my romanswow logo? i made this.
Sikilde
04-21-2009, 03:37 AM
Its easy to change the pic on it. Just replace it with an other one.
I don't remember the link.. I saw it back in TBC...
Think the server is down now anyway.
roman10
04-21-2009, 03:39 AM
hey sik ty for the help but i made this its not very hard to make a spora. ill most likely have another spora made withen a few days.
Sikilde
04-21-2009, 04:11 AM
Your site arn't working right.
Dalaran Register (http://dalaran.game-server.cc)
Changed on a few stuff.. Looks better, and it work as it should.
roman10
04-21-2009, 05:18 AM
Hey sik! you know. lol your site dont even work so i appreciate the help but i hate it when people say it does not work when i have PROOF! it works as it is supposed to so just be quiet
Sikilde
04-21-2009, 05:39 AM
Sorry, missed a "n" in the link. It work now.
Jgro1413
04-21-2009, 06:24 AM
Spora?(With different pictures?)
Sikilde
04-21-2009, 06:26 AM
Probly..
Heres the code for those how didn't download;
<?php
$config['mysql_host'] = 'localhost'; // MySql Hostname / IP
$config['mysql_user'] = 'root'; // MySql Username
$config['mysql_pass'] = 'ascent'; // MySql Password
$config['mysql_dbname'] = 'logon'; // Database Name
$WotLK = '0'; // For enabling WotLK. Don't edit.
error_reporting(E_ALL ^ E_NOTICE);
session_start();
$msg = Array();
$error = Array();
function addUser(){
if (empty($_POST)) return false;
global $config, $msg, $error;
if (empty($_POST['login'])) $error[] = 'Error, you forgot to enter a account name!';
if (empty($_POST['password'][0]) || empty($_POST['password'][1])) $error[] = 'Error, you forgot to enter a password!';
if ($_POST['password'][0] !== $_POST['password'][1]) $error[] = 'Password does not match!';
if (!empty($error)) return false;
$db = @mysql_connect($config['mysql_host'], $config['mysql_user'], $config['mysql_pass']);
if (!$db) return $error[] = 'Database: '.mysql_error();
if (!@mysql_select_db($config['mysql_dbname'], $db)) return $error[] = 'Database: '.mysql_error();
$query = "SELECT `acct` FROM `accounts` WHERE `login` = '".mysql_real_escape_string($_POST['login'])."'";
$res = mysql_query($query, $db);
if (!$res) return $error[] = 'Database: '.mysql_error();
if (mysql_num_rows($res) > 0) return $error[] = 'Account name already exists';
if ($_POST['flags'] == 1){$tbc = "24";} else {$tbc = "0";} // Enables WotLK
$query = "INSERT INTO `accounts` (`login`,`password`,`lastip`,`flags`) VALUES ('".mysql_real_escape_string($_POST['login'])."', '".mysql_real_escape_string($_POST['password'][0])."', '".$_SERVER['REMOTE_ADDR']."', '".mysql_real_escape_string($tbc)."')";
$res = mysql_query($query, $db);
if (!$res) return $error[] = 'Database: '.mysql_error();
$msg[] = 'The Account <strong>'.htmlentities($_POST['login']).'</strong> has been created. You may now login!';
mysql_close($db);
return true;
}
{
addUser();
}
?>
<html>
<head>
<title>Dalaran Register</title>
<style>
body, table {
font-family: Verdana;
font-size: 13px;
background-color: #000000;
color: #ffffff
}
input {
font-family: Tahoma;
text-align: center;
padding: 2px;
}
input.button {
font-family: Verdana;
font-size: 12px;
padding: 2px 25px;
}
div.error {
border: 2px solid #FF0000;
background-color: #f48987;
padding: 4px;
text-align: center;
color: #006600
}
div.msg {
background-color: #9fd5b5;
padding: 4px;
border: 2px solid #00b159;
text-align: center;
color: #006600
}
</style>
</head>
<body>
<u><h2 align="left"><font><center><img src=img/logo2.jpg></center></h2></u>
<?php
if (!empty($error)){
echo '<div class="error">';
foreach($error as $text)
echo $text.'<br/>';
echo '</div>';
};
if (!empty($msg)){
echo '<div class="msg">';
foreach($msg as $text)
echo $text.'<br/>';
echo '</div>';
exit('</body></html>');
};
?>
<center><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<table><div align="center"><br>
<b style = "color:white; font-size:8pt; font-variant: small-caps; letter-spacing:3px;"><i>A</i>ccount <i>N</i>ame:</b><br>
<input type="text" name="login" size="30" maxlength="16"/>
<br>
<b style = "color:white; font-size:8pt; font-variant: small-caps; letter-spacing:3px;"><i>A</i>ccount <i>P</i>assword:</b><br>
<input type="password" name="password[]" size="30" maxlength="16"/>
<br>
<b style = "color:white; font-size:8pt; font-variant: small-caps; letter-spacing:3px;"><i>P</i>assword <i>A</i>gain:</b><br>
<input type="password" name="password[]" size="30" maxlength="16"/>
<br>
<b style = "color:white; font-size:8pt; font-variant: small-caps; letter-spacing:3px;"><i>WotLK</i> Enabled?</b> <input type="checkbox" name="flags" value="1" checked>
<br><br>
<input type="image" src="../img/submit_on.gif" value="Submit" alt="Submit">
</table>
<div align="center">
<p id="done" style="width: 220px; font-weight: bold; color: #29b503; font-family: tahoma, arial, sans; font-size: 13px;">
<font color="green">Realmlist:</font><br /><font color="white">set realmlist dalaran.game-server.cc<br /><br />
<font color="green">Accepted Client(s):</font><br /><font color="white">3.0.9<br /><br />
<
<font color="white">[</font><a href=""> <font color="#29b503">Forums (Won't work, no forum up.</font> </a><font color="white">]</font><font color="white">[</font><a href=""> <font color="#29b503">Stats (Won't work, no Stat site up)</font> </a><font color="white">]</font><br />
<br />
</div>
</form>
</body>
</html>
razvanbk
04-21-2009, 07:28 AM
1 question ...how i make forum to this webpack ? :|
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.