• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Custom Feature Question] IDEA OF CREATING GUILD IN THE GAME

[/ATTACH][/ATTACH][/ATTACH]
I do not know if the event is wrong or something is missing to do
 

Attachments

  • [PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
    Sem título.png
    28.4 KB · Views: 13
  • [PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
    Sem título1.png
    14.3 KB · Views: 12
  • [PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
    Sem título3.png
    40.9 KB · Views: 10
Last edited:
*God

Also, are you using BW Trainer Card?
Honestly, i do not know what you are doing wrong, but in fact you are. Congratz for it.
 
When I try to access the trainer card in the game it creates shows this error ...
 
Code:
def pbStartScene
    @sprites={}
    @viewport=Viewport.new(0,0,Graphics.width,Graphics.height)
    @viewport.z=99999
    background=pbResolveBitmap(sprintf("Graphics/Pictures/trainercardbgf"))
    if $Trainer.isFemale? && background
      addBackgroundPlane(@sprites,"bg","trainercardbgf",@viewport)
    else
      addBackgroundPlane(@sprites,"bg","trainercardbg",@viewport)
    end
    cardexists=pbResolveBitmap(sprintf("Graphics/Pictures/trainercardf"))
    @sprites["card"]=IconSprite.new(0,0,@viewport)
    if $Trainer.isFemale? && cardexists
      @sprites["card"].setBitmap("Graphics/Pictures/trainercardf")
    else
      @sprites["card"].setBitmap("Graphics/Pictures/trainercard")
    end
    @sprites["overlay"]=BitmapSprite.new(Graphics.width,Graphics.height,@viewport)
    @sprites["guildicon"]=IconSprite.new(326,89,@viewport)
    @sprites["guildicon"].setBitmap("Graphics/Pictures/Guild_Alpha") if $game_variables[55]==1
    @sprites["guildicon"].setBitmap("Graphics/Pictures/Guild_Delta") if $game_variables[55]==2
    @sprites["guildicon"].setBitmap("Graphics/Pictures/Guild_Omega") if $game_variables[55]==3
    @sprites["guildicon"].z = 2
    @sprites["trainer"]=IconSprite.new(336,98,@viewport)
    @sprites["trainer"].setBitmap(pbPlayerSpriteFile($Trainer.trainertype))
    @sprites["trainer"].x-=(@sprites["trainer"].bitmap.width-128)/2
    @sprites["trainer"].y-=(@sprites["trainer"].bitmap.height-128)
    @sprites["trainer"].z=2
    pbSetSystemFont(@sprites["overlay"].bitmap)
    pbDrawTrainerCardFront
    if $PokemonGlobal.trainerRecording
      $PokemonGlobal.trainerRecording.play
    end
    pbFadeInAndShow(@sprites) { update }
  end
 
after joining the guild, won the item (guildcard)
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
[PokeCommunity.com] IDEA OF CREATING GUILD IN THE GAME
 
Last edited:
Back
Top