The PokéCommunity Forums

The PokéCommunity Forums (https://www.pokecommunity.com/index.php)
-   Feedback & Support (https://www.pokecommunity.com/forumdisplay.php?f=4)
-   -   Quick Questions & Answers / "Where do I post this?" (https://www.pokecommunity.com/showthread.php?t=246590)

Nurse Joy May 19th, 2014 1:28 PM

Is there a place I can find all of the tags used on PC? I just recently discovered the [user] tag by experimentation, but I can't just guess every time.

If they are somewhere in the "reply" box, forgive my stupidity XD

antemortem May 19th, 2014 1:35 PM

Quote:

Originally Posted by Nurse Joy (Post 8259136)
Is there a place I can find all of the tags used on PC? I just recently discovered the [user] tag by experimentation, but I can't just guess every time.

If they are somewhere in the "reply" box, forgive my stupidity XD

Yep, it's right here! And don't feel stupid, those links are hard to see. :P

Nurse Joy May 20th, 2014 1:27 PM

First of all, I just want to say "thank you" for your help. I'd be so lost if it wasn't for you guys ;w;
I love this thread <3

My question: Who adds the emotes on this site? I use "^^;" a lot, so I think there should really be an emote for it. I've even found one~! http://e.deviantart.net/emoticons/a/animesweat.gif

Is there someone who adds these emotes?

I know it's really trivial, but I'd still like to know.

Livewire May 20th, 2014 1:34 PM

Well, there is a set list of all the emotes we have here, usually the various smileys and the Pokemon ones, if that's what you're referencing?

Either way, we have images and such like that uploaded to the server, in most cases. Rank images, etc.

Nurse Joy May 20th, 2014 2:33 PM

Quote:

Originally Posted by Vader (Post 8260789)
Well, there is a set list of all the emotes we have here, usually the various smileys and the Pokemon ones, if that's what you're referencing?

Either way, we have images and such like that uploaded to the server, in most cases. Rank images, etc.

Yes, that's what I'm talking about. I'm just wondering if it's possible to add more and who is in charge of that.

Livewire May 20th, 2014 2:35 PM

Quote:

Originally Posted by Nurse Joy (Post 8260887)
Yes, that's what I'm talking about. I'm just wondering if it's possible to add more and who is in charge of that.

Yes, it's probably possible to add more. That's probably a job for the Staff Administrators to handle.

Nurse Joy May 23rd, 2014 3:51 PM

What happened to the Simple Questions Thread of the ROM Hacking Forum? Why was it locked?
I have a rather simple question about ROM Hacking, but I don't know where I should ask it.
Well, the question I want to ask is:

"What should I do first when hacking a ROM? Is there something I need to do before anything else, like changing the world map or something? Or can I do anything I want first?

Also, should I use patches first? I don't want to use a ROM base, I mean decapitalization patches and Fairy type patches and whatnot."

Where should I ask this question? :/

Thanks!

Quote:

Originally Posted by Vader (Post 8260893)
Yes, it's probably possible to add more. That's probably a job for the Staff Administrators to handle.

I guess I'm the only one who asks questions xD
Thanks for your help, but it's not important enough to ask one of them to do it.

Chiere May 23rd, 2014 4:03 PM

I have a question about my signature. Underneath the image, the line "Legend of Zelda for the Win" is supposed to show. And it does show up in the Edit Signature page. However, the text isn't showing up under the image in my posts. What is going on with that?

Nurse Joy May 23rd, 2014 4:16 PM

Quote:

Originally Posted by Omega Ruby (Post 8265505)
I have a question about my signature. Underneath the image, the line "Legend of Zelda for the Win" is supposed to show. And it does show up in the Edit Signature page. However, the text isn't showing up under the image in my posts. What is going on with that?

Huh? I can see it... That's odd that you can't O.o

Chiere May 23rd, 2014 4:26 PM

That is odd. Is it maybe connected to my mobile Safari browser? (which I use for all my online activities)

Nah May 23rd, 2014 4:30 PM

Quote:

Originally Posted by Omega Ruby (Post 8265523)
That is odd. Is it maybe connected to my mobile Safari browser? (which I use for all my online activities)

It's more that your sig is too tall. Shrink it a bit and it'll show up.

Chiere May 23rd, 2014 9:56 PM

I edited my signature to meet the height requirement, but the text still isn't showing up in my posts. Anything else I can try?

Hiatus May 23rd, 2014 10:25 PM

Quote:

Originally Posted by Omega Ruby (Post 8265808)
I edited my signature to meet the height requirement, but the text still isn't showing up in my posts. Anything else I can try?

Your signature has a scroll-bar, so that means it's breaking the limit. :( Maximum signature height is 350px, but your gif, though, is 370--larger by 20 pixels. Just make it a little smaller (I'd suggest you should cut it off by about 40px, so that you could have your text show up, too), and you should be all good to go.

Danny0317 May 24th, 2014 6:50 AM

How do I close a poll in a thread and add a new one?

Dban1 May 24th, 2014 6:54 AM

Hi I just started using Pokemon Essentials, and I'm trying to create a move where the user changes the opponent's stats back to normal. So far it isn't working in the Script.rxdata, and nothing happens in the game when I use it. Here's how the script looks for the move:

class PokeBattle_Move_13B < PokeBattle_Move
def pbEffect(opponent,hitnum=0,alltargets=nil,showanimation=true)
for i in 0...4
@battle.opponent[i].stages[PBStats::ATTACK] = 0
@battle.opponent[i].stages[PBStats::DEFENSE] = 0
@battle.opponent[i].stages[PBStats::SPEED] = 0
@battle.opponent[i].stages[PBStats::SPATK] = 0
@battle.opponent[i].stages[PBStats::SPDEF] = 0
@battle.opponent[i].stages[PBStats::ACCURACY] = 0
@battle.opponent[i].stages[PBStats::EVASION] = 0
end
pbShowAnimation(@id,attacker,nil,hitnum,alltargets,showanimation)
@battle.pbDisplay(_INTL("All opponents' stat changes were eliminated!"))
return 0
end
end

Tsutarja May 24th, 2014 8:07 AM

Quote:

Originally Posted by Dban1 (Post 8266282)
Hi I just started using Pokemon Essentials, and I'm trying to create a move where the user changes the opponent's stats back to normal. So far it isn't working in the Script.rxdata, and nothing happens in the game when I use it. Here's how the script looks for the move:

class PokeBattle_Move_13B < PokeBattle_Move
def pbEffect(opponent,hitnum=0,alltargets=nil,showanimation=true)
for i in 0...4
@battle.opponent[i].stages[PBStats::ATTACK] = 0
@battle.opponent[i].stages[PBStats::DEFENSE] = 0
@battle.opponent[i].stages[PBStats::SPEED] = 0
@battle.opponent[i].stages[PBStats::SPATK] = 0
@battle.opponent[i].stages[PBStats::SPDEF] = 0
@battle.opponent[i].stages[PBStats::ACCURACY] = 0
@battle.opponent[i].stages[PBStats::EVASION] = 0
end
pbShowAnimation(@id,attacker,nil,hitnum,alltargets,showanimation)
@battle.pbDisplay(_INTL("All opponents' stat changes were eliminated!"))
return 0
end
end

Have you perhaps tried looking at our Pokémon Essentials section here on PC for help?

Please keep in mind that this section is only for questions related to the community. :)

Astinus May 24th, 2014 7:34 PM

Quote:

Originally Posted by Dark Sneasel (Post 8266276)
How do I close a poll in a thread and add a new one?

Ask a staff member to do that for you. Staff can edit thread polls.

shadedbluewhitered May 27th, 2014 4:13 PM

My question is, how to make gifs functional on this forum?

I noticed that karatekid552's work perfectly fine, but I can't seem to get mine to work.

Hiatus May 27th, 2014 4:20 PM

Quote:

Originally Posted by shadedbluewhitered (Post 8272145)
My question is, how to make gifs functional on this forum?

I noticed that karatekid552's work perfectly fine, but I can't seem to get mine to work.

They should work like all other type of images; just upload them to a good host (such as TinyPic), and use [img] tag. For example, if I were to embed this, this is how the code would look:

[img]http://www.pokecommunity.com/images/templates/pichusquared/statusicon/forum_new.gif[/img]

I hope this helps, haha.

shadedbluewhitered May 27th, 2014 4:52 PM

It didn't work, how would I set a gif as my avatar?

Oryx May 27th, 2014 4:57 PM

If you're uploading a gif and it's not working for your avatar, either the dimensions are too big (PC will resize it as a .jpg, turning off the animation), or the filesize is too big. Once you fix one of those it should work.

shadedbluewhitered May 27th, 2014 5:12 PM

Quote:

Originally Posted by Oryx (Post 8272189)
If you're uploading a gif and it's not working for your avatar, either the dimensions are too big (PC will resize it as a .jpg, turning off the animation), or the filesize is too big. Once you fix one of those it should work.

Thank you, this helped a lot. :)

CluelessUncle May 28th, 2014 1:53 PM

Hey, I'm looking to get started on the trading card game, so my nephew has got a buddy to battle and have literally no idea where to start, is there a thread that can help explain how to get started?
Thanks

Sheep May 28th, 2014 1:58 PM

Hey Uncle! Have you checked the getting started, guides, and terminology thread in the Pokemon TCG board yet? (: I'm sure it'd be helpful, especially the learning to play post in said thread if you guys are brand new to it.

Chiere May 29th, 2014 3:39 PM

Hi, I need some help regarding my signature. I was changing it just now and decided to use the Upload Signature Picture option. (This is the first time I've ever used that option) The image loaded fine but when I looked at my profile, the new picture did not show up as my signature. It currently says that I have no signature, even though I do have an image uploaded. Am I doing something wrong?

Hiatus May 29th, 2014 4:04 PM

The image was uploaded into our server only, but to have it placed into your signature, you'd need to do it yourself manually. Just right click, copy the url, and place it within [img] tags, and you should be all set! If you like, you could also use [sigpic].

Edit: Actually, your sig rights might have been revoked for breaking rules constantly. :( You might want to contact an administrator to see if everything's all right.

Chiere May 29th, 2014 4:53 PM

I put it in the sig space and it worked! Thank you!

PikaNitro May 29th, 2014 8:06 PM

Is there any way I could Post up a VS sprite that I've uploaded to my DeviantArt account?
All I want to do is let people know that I'm posting up details about my Disney-Related Pokemon Hack on both DeviantART and here on the forums and also letting them comment on both here and DeviantART about the VS Sprite I made.

The Void May 29th, 2014 9:24 PM

Quote:

Originally Posted by TheTyranrtumAvenger (Post 8275557)
Is there any way I could Post up a VS sprite that I've uploaded to my DeviantArt account?
All I want to do is let people know that I'm posting up details about my Disney-Related Pokemon Hack on both DeviantART and here on the forums and also letting them comment on both here and DeviantART about the VS Sprite I made.

You can post your works in the Art & Design forum :3

Devoxys12 May 30th, 2014 12:50 PM

(I'm a noob, been here 3 days)
How do you add a banner to a signature?

Tsutarja May 30th, 2014 1:22 PM

Quote:

Originally Posted by Devoxys12 (Post 8276842)
(I'm a noob, been here 3 days)
How do you add a banner to a signature?

Hi there! You can add a image to your signature by taking any image's URL and insert it inside the [img][/img] BB code. Just be sure that the image is within the signature rules constraint, which is explained in further right here! Hope this helps! :)

Devoxys12 May 30th, 2014 1:45 PM

Thanks! That helps a lot!

Chiere June 1st, 2014 2:34 PM

I clicked the Social Groups link to see if there were any groups I could join, and got the following message:

Access Denied.
Omega Ruby you do not have permission to access this page. This could be due to one of several reasons:

Your user account may not have sufficient privileges to access this page.
Are you trying to edit someone else's post, access administrative features or some other privileged system?
Your account hasn't yet been activated.
If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation. You may activate your account here.

Is that related to my current usergroup possibly (which I suspect is different from the Registered Users group because my signature has been taken away)?

Cura June 1st, 2014 2:38 PM

Quote:

Originally Posted by Omega Ruby (Post 8280857)
Is that related to my current usergroup possibly (which I suspect is different from the Registered Ysers group because my signature has been taken away)?

I don't think the Social Groups tabs exists anymore, unless its mod/admin only.
I can't use nor access it, and I do not think it is because of your usergroup.

Your signature might of been removed because it was too large as well.
Here is a link to the community rules, scroll down to the signature section for the size limits.

antemortem June 1st, 2014 3:09 PM

Social groups no longer exist on PC, nope.

InPKMweTrust June 1st, 2014 3:54 PM

How do i make a trade shop

Astinus June 1st, 2014 4:00 PM

Follow the rules of the section and maybe take a look at how other shops work to get some ideas for your own. If you have any more questions, you can ask a moderator of that section.

Cura June 1st, 2014 4:10 PM

Quote:

Originally Posted by InPKMweTrust (Post 8280993)
How do i make a trade shop

You can find Trade Shops under this forum, right here.

theheatedglory99 June 2nd, 2014 2:12 AM

How would I post an answer on the contest

Chiere June 2nd, 2014 3:51 AM

I think it depends on the contest. Some may have a thread you can post in while others require that you PM the contest organisers with your answer. There should usually be details about this in the contest information.

Nah June 2nd, 2014 4:43 PM

Quote:

Originally Posted by theheatedglory99 (Post 8281668)
How would I post an answer on the contest

Which contest are you talking about?

Cura June 3rd, 2014 2:11 PM

Quote:

Originally Posted by Salt&PepperDiner (Post 8282951)
Which contest are you talking about?

I think he is referring to the current contest in the announcement forum, for the meet up.
I am unsure, because that is the only event I have seen so far (plus the question is a bit vague).

Tsutarja June 3rd, 2014 2:48 PM

Quote:

Originally Posted by Salt&PepperDiner (Post 8282951)
Which contest are you talking about?

Quote:

Originally Posted by CureYoshiDarkness (Post 8284396)
I think he is referring to the current contest in the announcement forum, for the meet up.
I am unsure, because that is the only event I have seen so far (plus the question is a bit vague).

I'm pretty sure he's talking about the ORAS speculation contest.

Cura June 3rd, 2014 2:58 PM

Quote:

Originally Posted by Zach (Post 8284429)
I'm pretty sure he's talking about the ORAS speculation contest.

Oh, alright. I did not know that.

Pepperton June 3rd, 2014 5:08 PM

Quote:

Originally Posted by theheatedglory99 (Post 8281668)
How would I post an answer on the contest

If you're talking about the Omega Ruby & Alpha Sapphire Speculation Contest, simply copy and paste the set of questions into your post and fill out the answers using your own jurisdiction! Nothing about the games is confirmed other than their existence, so there are no right or wrong answers yet. When information is revealed, the thread will be locked to prevent cheating.

Remember to only post your answers, the thread is not for discussion. Also, send a message to Antemortem if you have further questions. Enjoy, and best of luck to you! :]

InPKMweTrust June 5th, 2014 9:40 AM

How do I make a trade shop? Please give me step by step details in the comments no links plzz

Cura June 5th, 2014 1:03 PM

Quote:

Originally Posted by InPKMweTrust (Post 8286871)
How do I make a trade shop? Please give me step by step details in the comments no links plzz

http://www.pokecommunity.com/showthread.php?t=302532

Listen here, friend. Read this thread for all the information you need to know.
It covers it all.

ZeroZeroX June 8th, 2014 3:06 PM

Where would I post something action replay related?

Tsutarja June 8th, 2014 3:36 PM

Quote:

Originally Posted by ZeroZeroX (Post 8291551)
Where would I post something action replay related?

Hmm, could you perhaps be a little more specific on your question? Does it pertain to ROM hacking in any way, or maybe a discussion on the AR?

ZeroZeroX June 8th, 2014 3:48 PM

I was thinking rom hacking, but don't know if the physical/ system copy of the AR would fit there. The question is about how you would convert a patch into action replay code for use on an actual cartridge.

~RNC~ June 13th, 2014 5:21 PM

Hello again, I have a question, I use the blossom shower style, I had it to where it would log me in every time, but I had to clear cookies and such and now if I am away for a bit it wants me to log in again, where is the used to be box that I can check to log me in every time at?

Hiatus June 13th, 2014 5:31 PM

Quote:

Originally Posted by ~RNC~ (Post 8299815)
Hello again, I have a question, I use the blossom shower style, I had it to where it would log me in every time, but I had to clear cookies and such and now if I am away for a bit it wants me to log in again, where is the used to be box that I can check to log me in every time at?

Oh, are you referring to the "remember me" option? I'm not really sure about that; most of our styles have been edited recently, I think, so that might've been removed along the way, somehow. For now, I'd suggest you should switch to a theme that does have it (try Garchompin'), log in, then change to Blossom Shower. Sadly, it's the only way you could avoid this issue, I believe. :( Hope it works out for ya!

~RNC~ June 13th, 2014 5:36 PM

Quote:

Originally Posted by Endless (Post 8299823)
Oh, are you referring to the "remember me" option? I'm not really sure about that; most of our styles have been edited recently, I think, so that might've been removed along the way, somehow. For now, I'd suggest you should switch to a theme that does have it (try Garchompin'), log in, then change to Blossom Shower. Sadly, it's the only way you could avoid this issue, I believe. :( Hope it works out for ya!

Yes that is what I was talking about, and I will try that, thanks.

Treecko June 14th, 2014 8:55 PM

I'm sure I'm correct when I think this, but any thread related to Facebook or a social networks (lets say "Facebook pet peeves" ) would fit in Technology&Internet?

Tsutarja June 14th, 2014 8:58 PM

Quote:

Originally Posted by Kouzan (Post 8301465)
I'm sure I'm correct when I think this, but any thread related to Facebook or a social networks (lets say "Facebook pet peeves" ) would fit in Technology&Internet?

Yes, since it involves internet and social networking, which is the internet. :p

Treecko June 14th, 2014 9:02 PM

Quote:

Originally Posted by Zach (Post 8301468)
Yes, since it involves internet and social networking, which is the internet. :p

Well okay, that should of been obvious. Just making sure. Thanks!

Alpha Sapphire June 16th, 2014 1:00 PM

I changed the email address for my alt account, Omega Ruby, an hour and a half ago to the address I us more often. However I have not gotten the reactivation email, so I cannot use my alt account at all (All I can see is a No Permissions message). I had updated my email on this account several weeks ago and I got the email at my new address almost instantly. I'm just curious about why it's taking so long this time. Thank you.

P.S. I did check my spam folder for the email and it's not there.

Chiere June 16th, 2014 2:18 PM

Never mind, I guess the reactivation process doesn't require a reconfirmation now.

Honest June 16th, 2014 6:34 PM

So what was the rational behind changing Chit Chat Cafe to General Chat? I'm just curious, considering, personally, I find the latter very bland and generic, whilst the former might have been a little fancy, it served its purpose well (again in my opinion).


I'm just interested, that's all.

Shining Raichu June 17th, 2014 1:23 AM

Quote:

Originally Posted by Dakota (Post 8304298)
So what was the rational behind changing Chit Chat Cafe to General Chat? I'm just curious, considering, personally, I find the latter very bland and generic, whilst the former might have been a little fancy, it served its purpose well (again in my opinion).


I'm just interested, that's all.

Rationale* :P

I asked for the change, you know how I feel about things that are cutesy. I much prefer a military theme to anything that would require a doily. I'd like to know whose idea CCC was :P

Chiere June 17th, 2014 10:55 PM

How do you delete a thread you've created? Just wondering.

Nihilego June 17th, 2014 11:02 PM

Quote:

Originally Posted by Omega Ruby (Post 8306165)
How do you delete a thread you've created? Just wondering.

The short answer is that you can't. If you have reason for a thread to be deleted you should ask the mod of the section to delete it for you (or a smod or admin if the section lacks a mod). As a general rule though we prefer not to delete content.

Chiere June 17th, 2014 11:24 PM

Okay, thanks. In this case I think there's a pretty good reason for the thread to be deleted, so I'll talk to the sectional mod about it.

Skystrike June 18th, 2014 6:09 AM

OmegaRuby and AlphaSapphire's forums have a whopping limit of zero characters required to post.

Is that a bug or a mistake or on purpose?

Logan June 18th, 2014 6:54 AM

Same thing has happened in other new forums. Currently being worked on I think, I'm sure the 25 character rule still applies though :).

Zeffy June 18th, 2014 7:39 PM

Is it just me, or is the menu bar thing in Yggdrasil pushed way to the right? See picture:

~RNC~ June 19th, 2014 8:08 PM

Ok I hope some one is up and on to answer this for me, if I check the box not to recieve PM's or VM's from ppl, but only for a few days, will they pop up after I uncheck the box when I am ready to get those again and also will the sending get a message of sorts saying that I am not taking them at the moment?

donavannj June 19th, 2014 8:21 PM

Quote:

Originally Posted by ~RNC~ (Post 8308988)
Ok I hope some one is up and on to answer this for me, if I check the box not to recieve PM's or VM's from ppl, but only for a few days, will they pop up after I uncheck the box when I am ready to get those again and also will the sending get a message of sorts saying that I am not taking them at the moment?

Basically, the option to send them to you will not be available, iirc. They will not be able to send them to you while you have them turned off.

Ghost Lunis June 20th, 2014 5:01 AM

Just a quickie, is there somewhere I could go and request someone to make me a css sig, or is that all individually based and I should try to find a smart friend?

Thanks in advance:)

Logan June 20th, 2014 5:41 AM

You're probably going to find better luck asking people individually. However, I think there is a CSS Help thread of some sorts in the Art forums somewhere.

Omicron June 20th, 2014 6:19 AM

It's the CSS Help and Resource Thread in the Technology and Internet forum. :)


Click!

Universe June 20th, 2014 6:23 AM

Quote:

Originally Posted by Champion Lunis (Post 8309338)
Just a quickie, is there somewhere I could go and request someone to make me a css sig, or is that all individually based and I should try to find a smart friend?

Thanks in advance:)

It's better to ask individual people but should you decide to code something of your own, you can find the CSS thread right here. They'll gladly help you out if you have any questions on how to code something in specific should you have an idea on what you want.

I'm afraid there are no CSS requesting threads around right now, but hopefully you can find someone who knows what they're doing. There are plenty of great coders out there! Just check out some of the nice CSS signatures people have around here!

Good luck!

Ghost Lunis June 20th, 2014 6:44 AM

Thanks for the help everyone.

Mana June 20th, 2014 7:46 AM

Quote:

Originally Posted by Champion Lunis (Post 8309338)
Just a quickie, is there somewhere I could go and request someone to make me a css sig, or is that all individually based and I should try to find a smart friend?

Thanks in advance:)

Smart or arty friend is your best bet :) or the CSS help thread if you reckon you might manage alone.

Ghost Lunis June 20th, 2014 7:59 AM

Quote:

Originally Posted by Magic (Post 8309491)
Smart or arty friend is your best bet :) or the CSS help thread if you reckon you might manage alone.

I looked over the links everyone pointed me too.....Definitely have to find someone like what you described here. No way in I could understand all of that. Its hard to teach an old dog new tricks, XD. except bb code. That's easy

Ros1e June 20th, 2014 4:52 PM

Just a little thing I noticed...
Every time I refresh my page, odd messages have been appearing in the top right corner of it, saying that I should be at work, I have met a terrible fate, I have grown to level 100, etc. I don't know what is happening, and it is a bit confusing to me.

Sheep June 20th, 2014 4:54 PM

Quote:

Originally Posted by Ros1e (Post 8310146)
Just a little thing I noticed...
Every time I refresh my page, odd messages have been appearing in the top right corner of it, saying that I should be at work, I have met a terrible fate, I have grown to level 100, etc. I don't know what is happening, and it is a bit confusing to me.

Those are just greet messages. They're randomized each time you refresh so that's why you're seeing different ones. n~n If you want to turn them off, go to your edit options page and scroll to the bottom. There's a "disable greet messages" option there. :)

Cornflowerblues June 23rd, 2014 8:12 AM

Where can I edit the header image for my profile page? I can only fine link-colour options and similar and a profile-pic uploader, but that's only the small 130x130...

Pepperton June 23rd, 2014 9:08 AM

Quote:

Originally Posted by Cornflowerblues (Post 8314024)
Where can I edit the header image for my profile page? I can only fine link-colour options and similar and a profile-pic uploader, but that's only the small 130x130...

Only donators have access to this feature. Information regarding that can be found here. There would be a 'Background Image' option next to the 'Background Color' box under the 'Customize Profile' tab in the User Control Panel.

Cornflowerblues June 23rd, 2014 9:18 AM

Ah I see, thanx :)
Well I'll be able to live without it for now :)

SmashBrony July 3rd, 2014 1:02 PM

How can I get my avatar to show up bigger?

Tsutarja July 3rd, 2014 1:07 PM

Quote:

Originally Posted by Stoney the Mewtwo (Post 8328872)
How can I get my avatar to show up bigger?

The only way to have your avatar to be larger than 130x130 pixels is to become a supporter. Each avatar size is dependent on the donation tier, and you can find the perks right here: http://www.pokecommunity.com/showthread.php?t=25461

SmashBrony July 3rd, 2014 1:10 PM

Ok, I'll check it out.
Thanks!

Hikamaru July 3rd, 2014 1:33 PM

To add onto Zach's post, there's different size dimensions for different supporter ranks. It's 150x150 for silver, 180x180 for gold and crystal. I'm not sure about the platinum but I think theirs is 200x200.

Nah July 4th, 2014 1:43 PM

Maximum avatar size for staff? My avatars keep appearing smaller than I like. According to the photobucket editor, my current one is 417x300. Pretty sure no one gets an avatar that size, but why does it appear so small on here?

Oryx July 4th, 2014 1:51 PM

Quote:

Originally Posted by Zekrom (Post 8330392)
Maximum avatar size for staff? My avatars keep appearing smaller than I like. According to the photobucket editor, my current one is 417x300. Pretty sure no one gets an avatar that size, but why does it appear so small on here?

What's happening is that, to fit the 180x180 limit you have, it's taking the biggest side and resizing it to 180 and scaling the shorter side down accordingly. Thus, 180x129.

A hacky way of making your avatar seem bigger if it's rectangular even though it's not any bigger is to crop it to be more square. Because it's rectangular you can't take advantage of the full 180x180 space.

Nah July 4th, 2014 2:18 PM

Quote:

Originally Posted by Oryx (Post 8330403)
What's happening is that, to fit the 180x180 limit you have, it's taking the biggest side and resizing it to 180 and scaling the shorter side down accordingly. Thus, 180x129.

A hacky way of making your avatar seem bigger if it's rectangular even though it's not any bigger is to crop it to be more square. Because it's rectangular you can't take advantage of the full 180x180 space.

That seemed to be the problem. Squared it and it looks better now. Thanks!

Monophobia July 9th, 2014 8:20 PM

Just wandering where to post a thread to get some PC people together to play Minecraft? Obviously in the gaming section, but do I make a new thread or...?

Altairis July 10th, 2014 12:51 AM

Quote:

Originally Posted by Gym Leader Mark (Post 8340393)
Just wandering where to post a thread to get some PC people together to play Minecraft? Obviously in the gaming section, but do I make a new thread or...?

There's a Get Together Minecraft event you could participate in here! Other than that, I did a search and there doesn't seem to be a "permanent" thread anywhere on PC, so you could probably make one yourself :)

Ghost Lunis July 11th, 2014 2:17 AM

so....What's happening to the post counts? I swear I lost close to 50 from last night to this morning. I looked around but didn't see a reason as to why.

mushimaster July 14th, 2014 8:34 AM

How do I edit the background color and boxes around text when I start a thread?

Tsutarja July 14th, 2014 8:53 AM

Quote:

Originally Posted by mushimaster (Post 8348861)
How do I edit the background color and boxes around text when I start a thread?

Are you referring to CSS? If so, then it's just CSS. If you need help with the basics of CSS, then I can suggest you look at this thread right here: http://www.pokecommunity.com/showthread.php?t=200899

~RNC~ July 14th, 2014 6:12 PM

I am having issues with my regular 3ds, some thing to do with an update, so where would I post about the issues I am having?

Nathan July 14th, 2014 6:24 PM

Quote:

Originally Posted by ~RNC~ (Post 8349999)
I am having issues with my regular 3ds, some thing to do with an update, so where would I post about the issues I am having?

I think you should try asking around in Technology & Internet

PokemonMaster1111 July 14th, 2014 8:28 PM

Where do I post pokemon games?

Hiatus July 14th, 2014 11:21 PM

Quote:

Originally Posted by PokemonMaster1111 (Post 8350266)
Where do I post pokemon games?

If yours is still under-development, then a good place to start off would be Progressing Games. Later down the road, you could visit Games Development, and have it posted there. Before you do any of this, make sure to read all guidelines, just so you don't run into any issue. Hope this helps!

Also, if you're talking about ROM hacks, then there's a whole category for them right here.

Omicron July 16th, 2014 3:40 PM

In Let's Fly Together [Legacy], the top part where it should say "Threads" and "Posts" is missing. It is something small and don't think it deserves a whole thread, but it bothers me a lot, haha.


El Héroe Oscuro July 16th, 2014 10:37 PM

Quote:

Originally Posted by Omicron (Post 8353518)
In Let's Fly Together [Legacy], the top part where it should say "Threads" and "Posts" is missing. It is something small and don't think it deserves a whole thread, but it bothers me a lot, haha.


If you change your theme and change it back to Let's Fly Together [Legacy], does that fix it? Only asking because I just changed to that theme and "Threads" and "Posts" was there for me, so I don't know if that's just a personal issue for you.

Hiatus July 16th, 2014 10:42 PM

Quote:

Originally Posted by Omicron
In Let's Fly Together [Legacy], the top part where it should say "Threads" and "Posts" is missing. It is something small and don't think it deserves a whole thread, but it bothers me a lot, haha.

Quote:

Originally Posted by elheroeoscuro
If you change your theme and change it back to Let's Fly Together [Legacy], does that fix it? Only asking because I just changed to that theme and "Threads" and "Posts" was there for me, so I don't know if that's just a personal issue for you.

Omicron was right--there were some coding errors in one of its templates. I've fixed them now, though, so hopefully, it should be all fine! Let me know if any of you still see that.

Omicron July 16th, 2014 11:34 PM

It is ok now! Thank you very much. :]


All times are GMT -8. The time now is 11:11 AM.


Like our Facebook Page Follow us on Twitter © 2002 - 2018 The PokéCommunity™, pokecommunity.com.
Pokémon characters and images belong to The Pokémon Company International and Nintendo. This website is in no way affiliated with or endorsed by Nintendo, Creatures, GAMEFREAK, The Pokémon Company or The Pokémon Company International. We just love Pokémon.
All forum styles, their images (unless noted otherwise) and site designs are © 2002 - 2016 The PokéCommunity / PokéCommunity.com.
PokéCommunity™ is a trademark of The PokéCommunity. All rights reserved. Sponsor advertisements do not imply our endorsement of that product or service. User generated content remains the property of its creator.

Acknowledgements
Use of PokéCommunity Assets
vB Optimise by DragonByte Technologies Ltd © 2023.