• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Gesior AAC] 0.3.1 fixed v1 for TFS 0.2+

Norix

Hosting Service !
Joined
Jan 18, 2008
Messages
544
Reaction score
8
Location
Germany
I updated Gesior AAC 0.3.1 and added some new features. Check changelog below for new features...
This version is ONLY for TFS 0.2+

Link: http://www.speedy*****malware.localhost/360419694.html

Credits:

Code:
- Gesior AAC (by Gesior.pl)
- News-Ticker System working now 100% (by me)
- Some random fixes, made it look more like cip soft page (by me)
- Modified characters.php file with equipment shower,... (by me)
- Banishment List (by Samme)
- Changelogs (by Pitufo)
- RL Poll System (by averatec)
- modified shopsystem.php file (by Pitufo)
- Paypal System (by Artii)
- Shopadmin Page (by me)
- Modified install.php (by me) [now the install.php will add all tables you need]
- added bug tracker (by averatec)

Hope you like it

Please rep ++ !!!

Your's Norix
 
Finally ! You rock Norix :D

You got a nice rep there from me ;)
All that's bold, is appreciated.

- News-Ticker System working now 100% (by me)
- Some random fixes, made it look more like cip soft page (by me)
- Modified characters.php file with equipment shower,... (by me)

- Banishment List (by Samme)
- Changelogs (by Pitufo)

- RL Poll System (by averatec)
- modified shopsystem.php file (by Pitufo)
- Paypal System (by Artii)
- Shopadmin Page (by me)
- Modified install.php (by me) [now the install.php will add all tables you need]
- added bug tracker (by averatec)

/Limannen
 
Thx ;)
I saw now that i havent fixed the server status. So to fix it go to config-and-functions.php to line 355. There you see this line:
Code:
	$sock = @fsockopen("127.0.0.1", $config['server']['port'], $errno, $errstr, 1);

Change this line to:
Code:
	$sock = @fsockopen("127.0.0.1", $config['server']['statusProtocolPort'], $errno, $errstr, 1);

It will be fixed in v2 ;)

Your's Norix
 
i have some error with the changeloc app. is required add a column in DB to make it work?, by the way repp++ to you norix i'll be happy to see more updates :D
 
;), if u want help in somthing msg me norix xD, maybe new 8.5 screens and more :D
 
@ Ferchox:
What errors you mean?? Please explain more !! :S

@ all:
Give suggestions for improovements/updates for v2 !!!
 
I have done a Point adder for my Shop Admin Page. It will be added in v2. If you wanna add it now go to the shopadmin.php file to line 257 and add this under it:
PHP:
if($action == "points") {
$player = stripslashes(ucwords(strtolower(trim($_REQUEST['character']))));
$points = $_POST['points'];
if(empty($player)) {
$main_content .= ' <form action="" method="post">
<B>Enter Character Name:</B>
<input type="textbox" name="character"><br>
<B>Enter Points Amount:</B>
<input type="textbox" name="points"><br>
<input type="submit" value="Submit">
</form></center>';
}
else
{
$player_data = $SQL->query("SELECT * FROM `players` WHERE `name` = '".$player."';")->fetch(); 
$SQL->query("UPDATE `accounts` SET `premium_points` = `premium_points` + '".$points."' WHERE `id` = '".$player_data['account_id']."'");
$main_content .= '<b><center>'.$points.' Premium Points added to the account of <i>'.$player.'</i> !</b></center>';
}
}
 
Please help, Ibuy items over the website but the item doesnt appear when I log into the game....
 
I get this error when trying to create a character

Fatal error: Call to a member function fetch() on a non-object in C:\xampp\htdocs\pot\OTS_Group.php on line 48

If you could explain on how to fix it that would be very helpful
Rep+++
 
@ Torik Online:
Maybe you didnt add any groups in group table in DB. Try to add them.
Execute this in your DB:

PHP:
INSERT INTO `groups` (`id`, `name`, `flags`, `access`, `maxdepotitems`, `maxviplist`) VALUES
(3, 'a god', 134788128760, 1, 0, 0),
(2, 'a gamemaster', 137438953471, 1, 0, 0),
(1, 'player', 0, 0, 0, 0);

And i hope you use TFS 0.2+ and NOT 0.3+ ;)
 
I have a question what about a shop if i have version tfs v0.2.4 and is not included globalevents. Somebady tell me that its shop system items works??

I buy something item and is red status "not realize yet"

thx in andvance
 
when i try to make a char i get this error
The Following Errors Have Occurred:

Wrong characters configuration ("Load vocations" in admin panel, "character to copy" doesn't exist in DB). Try again or contact with admin.
 
Back
Top