• 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!

trying to add guild shop page

God Mythera

Veteran OT User
Joined
Aug 11, 2012
Messages
2,051
Solutions
2
Reaction score
260
Location
United States
Hello im trying to use the scripts from this thread

https://otland.net/threads/shopguild-points-100-add-in-player-offline.186176/

ive added them but when i go to page i get this error

guild shop
Code:
Error occured!
Error ID: CRITICAL ERROR
More info: Cannot load page shopguild, file does not exist.

File: C:\UniServerZ\www\system/load.compat.php  Line: 20
File: C:\UniServerZ\www/index.php  Line: 33

shop guild admin
Code:
Error occured!
Error ID: CRITICAL ERROR
More info: Cannot load page shopguildadmin, file does not exist.

File: C:\UniServerZ\www\system/load.compat.php  Line: 20
File: C:\UniServerZ\www/index.php  Line: 33

P.S im using uniserver gesior acc
 
Since you're using Gesior AAC 2012+ it might not work as It works on older Gesior AAC versions. So you will have to create a guildshop based on shopsystem's default script.
 
Try with this shopguild.php

http://pastebin.com/duE5ULcZ

Code:
ALTER TABLE `accounts` ADD `guild_points` INT( 11 ) NOT NULL DEFAULT '0';

Code:
CREATE TABLE IF NOT EXISTS `z_shop_guild` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `points` int(11) NOT NULL DEFAULT '0',
  `itemid1` int(11) NOT NULL DEFAULT '0',
  `count1` int(11) NOT NULL DEFAULT '0',
  `itemid2` int(11) NOT NULL DEFAULT '0',
  `count2` int(11) NOT NULL DEFAULT '0',
  `offer_type` varchar(255) DEFAULT NULL,
  `offer_description` text NOT NULL,
  `offer_name` varchar(255) NOT NULL,
  `PID` int(11) NOT NULL,
  `storage` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1515 ;

You might have to add guild points to account classes.
classes/account.php
OfFBaQkr.png

You have to add these lines in that part on account.php
 
Try with this shopguild.php

http://pastebin.com/duE5ULcZ

Code:
ALTER TABLE `accounts` ADD `guild_points` INT( 11 ) NOT NULL DEFAULT '0';

Code:
CREATE TABLE IF NOT EXISTS `z_shop_guild` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `points` int(11) NOT NULL DEFAULT '0',
  `itemid1` int(11) NOT NULL DEFAULT '0',
  `count1` int(11) NOT NULL DEFAULT '0',
  `itemid2` int(11) NOT NULL DEFAULT '0',
  `count2` int(11) NOT NULL DEFAULT '0',
  `offer_type` varchar(255) DEFAULT NULL,
  `offer_description` text NOT NULL,
  `offer_name` varchar(255) NOT NULL,
  `PID` int(11) NOT NULL,
  `storage` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1515 ;

You might have to add guild points to account classes.
classes/account.php
OfFBaQkr.png

You have to add these lines in that part on account.php
i did this and same problem ;s could you help me on teamviewer possibly? xd
 
Back
Top