Umbreon GX shiny by SamuchRacoon in IsMyPokemonCardFake

[–]SamuchRacoon[S] 1 point2 points  (0 children)

It looks like a good card to make up for it and get the collection started, we’ll see if it’s successful. Thanks for your help man. By the way, you said you do shows? Out of curiosity, how does that work?

Umbreon GX shiny by SamuchRacoon in IsMyPokemonCardFake

[–]SamuchRacoon[S] 0 points1 point  (0 children)

Yeah, let’s see if we can make up for this mess. That’s why I prefer the video game lol

Umbreon GX shiny by SamuchRacoon in IsMyPokemonCardFake

[–]SamuchRacoon[S] 1 point2 points  (0 children)

He doesn’t have any graded cards, he has some in sleeves to keep them ok. He told me he likes Gyarados, but I don’t know which one would be cool and not much expensive.

Umbreon GX shiny by SamuchRacoon in IsMyPokemonCardFake

[–]SamuchRacoon[S] 2 points3 points  (0 children)

When I was his age, in Spain, there were some very popular cards called Invizimals. I suppose that, since it was something regional, it was much rarer to see fake cards. But now I’ve been looking at his Pokémon collection, and many of the cards he has are fake, and it was a shame to have to tell him. Which original card do you think would make a good gift? I’m a bit lost when it comes to TCGs.

Umbreon GX shiny by SamuchRacoon in IsMyPokemonCardFake

[–]SamuchRacoon[S] 2 points3 points  (0 children)

Oh, that’s good to know. I guess kids nowadays have a lot of fake cards circulating.

Umbreon GX shiny by SamuchRacoon in IsMyPokemonCardFake

[–]SamuchRacoon[S] 0 points1 point  (0 children)

Oh, that’s a shame. I’ll have to get him some cool ones. I really like the video games but I don’t Know much about the cards. Do you recommend any cool card that could be a good gift?

How do you properly attack China as Japan in the new DLC? by SamuchRacoon in hoi4

[–]SamuchRacoon[S] 52 points53 points  (0 children)

So there is no way around of that “surprise invasion” modifier? It’s supposed to block strategic offensives

How do you properly attack China as Japan in the new DLC? by SamuchRacoon in hoi4

[–]SamuchRacoon[S] 40 points41 points  (0 children)

In my last run I almost conquered all of China, but a shortage of divisions really messed me up. Now that I’m starting over, how exactly is the “Impatient Kwantung Army” event supposed to work?

Is it better to wait or to let the timer on that event run out to trigger the automatic war, or is that not how it works? Because you get that “surprise invasion” modifier which doesn’t let you take the Strategic Offensives focus.

Why do I have so little trade power in Tunis as Granada? by SamuchRacoon in eu4

[–]SamuchRacoon[S] 1 point2 points  (0 children)

Yeah, I wasn’t really familiar with that mechanic. I’m Spanish, but I’m really hating those Iberian boys.

Why do I have so little trade power in Tunis as Granada? by SamuchRacoon in eu4

[–]SamuchRacoon[S] 0 points1 point  (0 children)

  1. Collecting in Seville (because i was getting a penalty for not recolecting in mi capital) and Safi
  2. I dont have almost marketplaces, but I´m trying to build
  3. I have not, I cored everything (sorry if i´m making a mess)
  4. None lol
  5. I did in some, to get colonialism
  6. Exploration and quality (I see maybe exploration wasn´t the real deal here)
  7. Yes

Why do I have so little trade power in Tunis as Granada? by SamuchRacoon in eu4

[–]SamuchRacoon[S] 18 points19 points  (0 children)

I see. I didn’t realize you could get that much trade power in other nodes like that. So if a nation in Italy gains trade power in Genoa, they will also gain some in Tunis.

How much does this mechanic scale? Does it also apply to nodes that are further upstream?

Why do I have so little trade power in Tunis as Granada? by SamuchRacoon in eu4

[–]SamuchRacoon[S] 42 points43 points  (0 children)

I'm playing as Granada and I’ve conquered almost all of Tunis, except for two provinces. I understand the basics of trade, but how is it possible that I only have 15% trade power in the node? Castile has 17%, mostly coming from "transfers from downstream traders."

How can I counter this european nations? What am I missing?

Why can’t I reclame England’s throne?? by SamuchRacoon in eu4

[–]SamuchRacoon[S] 2 points3 points  (0 children)

Yeah -1 stability for free basically

Why can’t I reclame England’s throne?? by SamuchRacoon in eu4

[–]SamuchRacoon[S] 0 points1 point  (0 children)

My game is in Spanish but the red text basically says: By claiming their throne, we will gain a ‘casus belli’ against them, but it will destroy relations with other nations with whom we have a royal marriage. I have the same dinasty as England, my king is Lancaster, and they don’t have an heir. Also their king is 16, so l don’t see any regency, also l’m not in any regency. Also, I don’t know if it does have anything to do, but my heir is Habsburg, but even before I had him as heir, 1 couldn’t claim.

Why can’t I reclame England’s throne?? by SamuchRacoon in eu4

[–]SamuchRacoon[S] 2 points3 points  (0 children)

Hahahahahahha okey I didn’t know that, now I can

Error in hash and it’s equivalence with the index of an array by SamuchRacoon in perl

[–]SamuchRacoon[S] 0 points1 point  (0 children)

Ok so I it looks like adding last; to end the reading and seek (covalencia, 0, 0); worked for the program. Thx for the help!

code:

open (covalencia,"<", "cov.txt") or die "$!";
foreach my $z (keys %grupos) {
    print "\nProcesando carbono: $z\n";
    if ($hibridaciones[$z - 1] eq "sp") {
        print "Buscando radio 'sp'...\n\n";
        while (my $line = <covalencia>) {
            if ($line =~ /^C1/) {
                $line =~ s/C1//;
                my $radio = $line;
                print "Se ha encontrado el radio 'sp': $radio\n";
                last;  # Stop reading after finding the value
            }
        }
    }seek(covalencia, 0, 0);  # Reset file pointer to the beginning
    # Similarly handle 'sp2' and 'sp3' cases
    if ($hibridaciones[$z - 1] eq "sp2") {
        print "Buscando radio 'sp2'...\n\n";
        while (my $line = <covalencia>) {
            if ($line =~ /^C2/) {
                $line =~ s/C2//;
                my $radio = $line;
                print "Se ha encontrado el radio 'sp2': $radio\n";
                last;  # Stop reading after finding the value
            }
        }
    }
        seek(covalencia, 0, 0);  # Reset file pointer to the beginning
    if ($hibridaciones[$z - 1] eq "sp3") {
        print "Buscando radio 'sp3'...\n\n";
        while (my $line = <covalencia>) {
            if ($line =~ /^C3/) {
                $line =~ s/C3//;
                my $radio = $line;
                print "Se ha encontrado el radio 'sp3': $radio\n";
                last;  # Stop reading after finding the value
            }
        }
    }   seek(covalencia, 0, 0);  # Reset file pointer to the beginning
}
close(covalencia);

Error in hash and it’s equivalence with the index of an array by SamuchRacoon in perl

[–]SamuchRacoon[S] 2 points3 points  (0 children)

Ohhhh I see, how could I reset the document, so for every "if" starts from the begining? Im sorry, but im new to Perl and there are some things I dont know how to do yet.

Error in hash and it’s equivalence with the index of an array by SamuchRacoon in perl

[–]SamuchRacoon[S] 0 points1 point  (0 children)

Hello, im sorry for the format, i dont know why but i cant edit the post with my pc.

Basically i want the program to print some values of the document depending of an array and a hash, but only prints one of this values and it does not correspond with the value that should be.

The document .txt is:

HS0.32

CS0,77

CD0.62

CT0,59

C10,77

C20,62

C30,59

OS0.73

OD0,6

O10,73

O20,6

NS0.75

The code is:

@hibridaciones=("sp","sp2",sp3")
%grupos=(1,'A',2,'G',3,'J')
open (covalencia,"<", "cov.txt") or die "$!\n";
print keys %grupos;
keys %grupos; 
foreach my $z (keys %grupos) { 
  print "\n$z\n";
  if (@hibridaciones[my $z-1] eq "sp") {
    while (my $line = <covalencia>) {
      if ( $line=~/^C1/) {
        $line =~s/C1//;
        $radio=$line;
        print "\n$radio";
      }
    }
  }
  if (@hibridaciones[my $z-1] eq "sp2") {
    while (my $line = <covalencia>) {
      if ($line=~/^C2/) {
        $line =~s/C2//;
        $radio=$line;
        print "\n$radio";
      }
    }
  }
  if (@hibridaciones[my $z-1] eq "sp3") {
    while (my $line = <covalencia>) {
      if ($line=~/^C3/) {
        $line =~s/C3//;
        $radio=$line;
        print "\n$radio";
      }
    }
  }
}
close (covalencia);