Log in



Tags » ‘perl’

pokemon perl how do u get the legendary pokemon from lake verity to reappear?

November 15th, 2010 by

Question by Cassie: pokemon perl how do u get the legendary pokemon from lake verity to reappear?
i chased it and it ran away in our battle plz help me
i chased it away in battle and now i dont kno how to find it again plz help me
and the fac doesnt appear on the pokegear.

Best answer:

Answer by Kevin
oh that’s part of the game well the best thing to do is get a pokemon that can stop it from running which means it knows mean look or block or just have the ability…. i forgot the ability but i hope it helps oh or you can use the master ball you find in the game

Just look on your pokegear map and itll show this creepy looking face and you follow it like latias and latios and others

Know better? Leave your own answer in the comments!

How do I convert an integer back to a character, (or a string that I can substring), in Perl?

November 15th, 2010 by

Question by Brian D: How do I convert an integer back to a character, (or a string that I can substring), in Perl?
I bet this is probably a very simple problem but I have been doing some research on it but can not find how to do it, (perhaps it is almost automatically done). But what I want to do is when I have a number come into a function have it converted to its Ascii equivalent charecter. So if I had the number 67 come in I would end up with a “C”.

Thanks

Brian

Best answer:

Answer by E.M.Bed
$char = pack(“C*”, $ascii);

$string = pack(“C*”, @ascii);

e.g.

$char = pack(“C*”, 65);
print $char;
A

$string = pack(“C*”, 68, 82);
print $string;
DR

Give your answer to this question below!


Powered by Yahoo! Answers