• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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

etique

etique
268
Posts
6
Years
    • Seen Oct 30, 2022
    [/ATTACH][/ATTACH][/ATTACH]
    I do not know if the event is wrong or something is missing to do
     

    Attachments

    • Sem título.png
      Sem título.png
      28.4 KB · Views: 13
    • Sem título1.png
      Sem título1.png
      14.3 KB · Views: 12
    • Sem título3.png
      Sem título3.png
      40.9 KB · Views: 10
    Last edited:

    Diverscope

    Pardon me
    152
    Posts
    11
    Years
  • For god's sake, will you just tell us what exactly the problem is? Or are you expecting us reading your mind?
     

    WolfPP

    Spriter/ Pixel Artist
    1,309
    Posts
    5
    Years
  • *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.
     

    etique

    etique
    268
    Posts
    6
    Years
    • Seen Oct 30, 2022
    When I try to access the trainer card in the game it creates shows this error ...
     

    etique

    etique
    268
    Posts
    6
    Years
    • Seen Oct 30, 2022
    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
     

    etique

    etique
    268
    Posts
    6
    Years
    • Seen Oct 30, 2022
    after joining the guild, won the item (guildcard)
    brendan3.png
    may1.png
    wally2.png
    jimmy2.png
    jimmy3.png
    silver1.png
    ash1.png
    ash2.png
    gary3.png
     
    Last edited:
    Back
    Top