Jump to content

Calise563

Clients
  • Joined

  • Last visited

  1. Hello, previously, on older versions of ips, I simply added code to profile.php to provide data about game characters belonging to a given account on the forum. Then I displayed them in the profileactivity template. I have a question about the IPS 5 beta. How should I display the characters? How to pass data to profile activity or how to edit it? Maybe there is another option to do this type of thing? Thank you very much for all your help, I count on your help! Regards try { $select = \IPS\Db::i()->select( '*', 'srv_characters', 'char_gid='.$this->member->member_id); foreach( $select as $key => $id ) { $characters[] = $id; } } catch( \UnderflowException $e ) { \IPS\Output::i()->error( 'no_module_permission', '2C122/1', 403, '' ); } try { $select = \IPS\Db::i()->select( '*', 'srv_penalties', 'penalty_user_global_id='.$this->member->member_id); foreach( $select as $key => $id ) { $penalty[] = $id; } } catch( \UnderflowException $e ) { \IPS\Output::i()->error( 'no_module_permission', '2C122/1', 403, '' ); } $tabContents = \IPS\Theme::i()->getTemplate( 'profile' )->profileActivity( $this->member, $latestActivity, $statusForm, $characters, $penalty );
  2. okay, thanks for your time 🙂
  3. Hey @Marc thank you for your answer Can you explain to me exactly how to create this in IPS 5 BETA? Currently I have a problem with creating a custom block querying the database to get characters. I would like to include characters from the srv_characters tab in player profiles that have memberid as the forum user id.
  4. Hello, previously, on older versions of ips, I simply added code to profile.php to provide data about game characters belonging to a given account on the forum. Then I displayed them in the profileactivity template. I have a question about the IPS 5 beta. How should I display the characters? How to pass data to profile activity or how to edit it? Maybe there is another option to do this type of thing? Thank you very much for all your help, I count on your help! Regards try { $select = \IPS\Db::i()->select( '*', 'srv_characters', 'char_gid='.$this->member->member_id); foreach( $select as $key => $id ) { $characters[] = $id; } } catch( \UnderflowException $e ) { \IPS\Output::i()->error( 'no_module_permission', '2C122/1', 403, '' ); } try { $select = \IPS\Db::i()->select( '*', 'srv_penalties', 'penalty_user_global_id='.$this->member->member_id); foreach( $select as $key => $id ) { $penalty[] = $id; } } catch( \UnderflowException $e ) { \IPS\Output::i()->error( 'no_module_permission', '2C122/1', 403, '' ); } $tabContents = \IPS\Theme::i()->getTemplate( 'profile' )->profileActivity( $this->member, $latestActivity, $statusForm, $characters, $penalty );
  5. Hello, I have a problem with icons on the forum. Squares appeared everywhere after changing the forum domain. I reset and assigned a new link in ClientArea and cleared the cache in the help panel. Anyone have an idea?