Ir para conteúdo
  • Cadastre-se

Posts Recomendados

ótimo, uso e aprovo. Qualquer bug eu posto aqui.


 

Contato: beeki@ resto vocês sabem, eu acho.

Link para o post
Compartilhar em outros sites

Fica este error aqui.

 

 

Mas não deu pra fazer essa ultima parte do shopsystem, pois o meu deve ser diferente não encontro essa parte ai.

 

 

 

uso tfs 1.0 e gesior 2012 ( se não me engano).

post-111819-0-03519900-1407535962_thumb.

Editado por maresoft (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Va em:

htdocs/classes/account.php:

public $data = array('name' => null,

Adicione:

public $data = array('name' => null, 'guild_points' => null,

Em:

public static $fields = array('id',

Adicione:

public static $fields = array('id', 'guild_points',

Procure por:

public function setPremiumPoints($value){$this->data['premium_points'] = $value;}
public function getPremiumPoints(){return $this->data['premium_points'];}

Adicione abaixo:

public function setGuildPoints($value){$this->data['guild_points'] = $value;}
public function getGuildPoints(){return $this->data['guild_points'];}

 

Obrigado Luan pela assistência REp+

Editado por Natanael Beckman (veja o histórico de edições)
Link para o post
Compartilhar em outros sites
  • 2 weeks later...

Natanael Beckman

 

Reputado pelo sistema!

Abraços

Editado por Bondx (veja o histórico de edições)

Atenciosamente,
Bondx.

 

Link para o post
Compartilhar em outros sites
  • 3 weeks later...

Tive um pequeno problema...

http://prntscr.com/4ktybx   << veja!

 

Veja:

 

Va em:

htdocs/classes/account.php:

public $data = array('name' => null,

Adicione:

public $data = array('name' => null, 'guild_points' => null,

Em:

public static $fields = array('id',

Adicione:

public static $fields = array('id', 'guild_points',

Procure por:

public function setPremiumPoints($value){$this->data['premium_points'] = $value;}
public function getPremiumPoints(){return $this->data['premium_points'];}

Adicione abaixo:

public function setGuildPoints($value){$this->data['guild_points'] = $value;}
public function getGuildPoints(){return $this->data['guild_points'];}

 

Obrigado Luan pela assistência REp+

Link para o post
Compartilhar em outros sites
  • 2 weeks later...

boa Noite, sou Bem leigo nessa parte,

voces poderiam me ajuda?

 

  ALTER TABLE `accounts` ADD `guild_points` INTEGER(11) NOT NULL DEFAULT 0;
  ALTER TABLE `accounts` ADD `guild_points_stats` INT NOT NULL DEFAULT '0';
  ALTER TABLE `guilds` ADD `last_execute_points` INT NOT NULL DEFAULT '0';
 

onde adicionio isso na Database?

Link para o post
Compartilhar em outros sites

boa Noite, sou Bem leigo nessa parte,

voces poderiam me ajuda?

 

  ALTER TABLE `accounts` ADD `guild_points` INTEGER(11) NOT NULL DEFAULT 0;
  ALTER TABLE `accounts` ADD `guild_points_stats` INT NOT NULL DEFAULT '0';
  ALTER TABLE `guilds` ADD `last_execute_points` INT NOT NULL DEFAULT '0';
 

onde adicionio isso na Database?

http://127.0.0.1/phpmyadmin

kFJEXe.png

Link para o post
Compartilhar em outros sites
  • 6 months later...

olá gostaria de saber se tem como fazer guild shop mais sem site pelo ot mesmo que nem o sistema que tem por points no ot que fala !points olha seus points mais envés ter guildshop pelo server tbm ?

Link para o post
Compartilhar em outros sites
  • 2 weeks later...

chefe o meu index é diferente, segue em anexo,

<?php

// comment to show E_NOTICE [undefinied variable etc.], comment if you want make script and see all errors

error_reporting(E_ALL ^ E_STRICT ^ E_NOTICE);

// true = show sent queries and SQL queries status/status code/error message

define('DEBUG_DATABASE', false);

define('INITIALIZED', true);

// if not defined before, set 'false' to load all normal

if(!defined('ONLY_PAGE'))

define('ONLY_PAGE', false);

// check if site is disabled/requires installation

include_once('./system/load.loadCheck.php');

// fix user data, load config, enable class auto loader

include_once('./system/load.init.php');

// DATABASE

include_once('./system/load.database.php');

if(DEBUG_DATABASE)

Website::getDBHandle()->setPrintQueries(true);

// DATABASE END

// LOGIN

if(!ONLY_PAGE)

include_once('./system/load.login.php');

// LOGIN END

// COMPAT

// some parts in that file can be blocked because of ONLY_PAGE constant

include_once('./system/load.compat.php');

// COMPAT END

// LOAD PAGE

include_once('./system/load.page.php');

// LOAD PAGE END

// LAYOUT

// with ONLY_PAGE we return only page text, not layout

if(!ONLY_PAGE)

include_once('./system/load.layout.php');

else

echo $main_content;

// LAYOUT END

Link para o post
Compartilhar em outros sites

demoniacs, Tenta assim:

 

 

<?php
 
// comment to show E_NOTICE [undefinied variable etc.], comment if you want make script and see all errors
error_reporting(E_ALL ^ E_STRICT ^ E_NOTICE);
 
// true = show sent queries and SQL queries status/status code/error message
define('DEBUG_DATABASE', false);
 
define('INITIALIZED', true);
 
// if not defined before, set 'false' to load all normal
if(!defined('ONLY_PAGE'))
define('ONLY_PAGE', false);
 
// check if site is disabled/requires installation
include_once('./system/load.loadCheck.php');
 
// fix user data, load config, enable class auto loader
include_once('./system/load.init.php');
 
// DATABASE
include_once('./system/load.database.php');
if(DEBUG_DATABASE)
Website::getDBHandle()->setPrintQueries(true);
// DATABASE END
 
// LOGIN
if(!ONLY_PAGE)
include_once('./system/load.login.php');
// LOGIN END
 
// COMPAT
// some parts in that file can be blocked because of ONLY_PAGE constant
include_once('./system/load.compat.php');
// COMPAT END
 
// LOAD PAGE
include_once('./system/load.page.php');
// LOAD PAGE END
 
// LAYOUT
// with ONLY_PAGE we return only page text, not layout
if(!ONLY_PAGE)
include_once('./system/load.layout.php');
else
echo $main_content;
// LAYOUT END FINISH GUILD SHOP
 
switch($_REQUEST['subtopic']) {
 
case "shopguild";
   $topic = "Shop Guild";
   $subtopic = "shopguild";
   include("shopguild.php");
break;
 
case "shopguildadmin";
   $topic = "ShopGuild Admin";
   $subtopic = "shopguildadmin";
   include("shopguildadmin.php");
break;
}

Editado por Ceos (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo