PDA

View Full Version : Palm Appz & Games


Pages : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

codered54
12-20-2006, 17:47
Can anyone post a cracked version of UDMH v5.3?

quickstang
12-20-2006, 18:01
I knew as soon as I said doctor in one of my posts you would ask so I was prepaired;)

You are the man for providing this. Works PERFECT. Too bad I didn't have this when I took anatomy :)

It will still come in handy though. That full program is $140 if you buy it you know. The complete anatomy one :D

rflores2323
12-20-2006, 18:19
Can anyone post a cracked version of UDMH v5.3?

its not crackable at all. One of the few programs that they say on this board that cannot be cracked.

Smoove03
12-20-2006, 18:46
someone posted some instructions a while back on how to get around the 7 day trial period on UDMH. I use the technique on my phone and it works fine.

You have to use PrefRemover (attached at bottom).

Install that and UDMH (im sure this has been posted here so use search if you dont have it).

Run PrefRemover and check off this preference in the list:
psys 30020

That is the preference for UDMH that tracks how many days you've had it. PrefRemover will periodically delete that preference made by UDMH so that the trial period will never end.

peace

adambomb
12-20-2006, 18:50
Can anyone post a cracked version of UDMH v5.3?
I for one dont back any of the demitry apps very unstable and he has even said himself that they go deep into the workings of your palm so my advise is USE AT YOUR OWN RISK!

iamajd
12-20-2006, 19:50
Hmmm, I got a PM about DialByPhoto... apparently you still need to use all 1s and cancel when it tries to connect. I think that's about the best I can do until ya'll get me a Treo :). I won't feel like my toes are being stepped on if someone else (who has the means to watch it run and to test it) 'finishes it up.' Be sure to add yourself to the "About" screen if you do tho... I wouldn't want all the credit (if you're unsure how to do that, send me your finished product and I'll add you and send it back!).


About Dmitry's apps... the man is a genius IMO. He's making things do things they were never meant to do, so of course there are some stability issues. Uncache didn't seem to change much for me. Actually, same goes for UMDH... nothing that would run without it seems to run with it... and it does create some stability issues. The only Dmitry app I use is MaxX, which is, compared to the others, very mild.


And one other thing... why can't we use signatures on this forum? I mean, I agree that a bunch of images and animations at the end of every post is really distracting and clutterful, but some text is okay. I came up with a great little signature that I use on another forum:

...::: Ode to Me :::...
Check the "About" screen
if the app runs for free,
for "Cracked by: IamAJD"
& feel free to thank me!

vineethraj
12-20-2006, 19:51
Does anyone have got an unlockable Snappermail 2.3.7? Then we could use the keygen... :D The demo version from their site can't be unlocked with a serial.



how is chatteremail compared to snapper, searched n got to know that chatter is better. wot say u guys ?

vineethraj
12-20-2006, 19:59
OK! props to subvert for this lesson:

A quick lesson in self-keygens.

Firstly, nearly all self-keygens that I write follow the same basic pattern.
Assuming the serial is in register D0 as in this app, we write

2F00 MOVE.L D0,-(A7)
4857 PEA (A7)
4E4FA0C9 SysTrapStrIToA
3F3C0708 MOVEW #1800
4E4FA194 SysTrapFrmAlert

Line by line this does the foollowing.

1. Moves the D0 register to the A7 register, neccessary for further processing. If the serial is already in an A register, leave it there, and change the next instruction.
2. Pushes the A7 register to the stack for processing. For A0, use 4850, for A1, 4851 etc
3. With the serial now on the stack, we can deal with it. If the serial is numeric, as it usually is, we first need to convert it to decimal with this instruction.
4. This now calls up an alert form, in this case the one numbered 1800. This alert could be an existing form, or one you rewrote, but it must contain the string ^1, which tells the app to take the variable sitting on the stack, which is our serial. ^1^2 will take the last two variables sitting on the stack if they exist. If you use a two-variable alert form, you MUST pass a second variable to display else you get an error. the code 4878000 is PEA$0000,W, which basically passes an empty string to the stack, so use this to fill an empty variable, or re-write the alert form.
5. This simply displays the alert form, hopefully displaying our serial.

You can follow this with a 4E4FAo8C instruction, which forces a reset, since many apps will reset anyhow after the alert.

In the case of this app, you have found the code in D0, so we are nearly there. We have the following code :-

000007b0 b0adfe52 CMP.L -430(A5),D0
000007b4 6626 BNE L79
000007b6 41fa0072 LEA L85,A0
000007ba 4850 PEA (A0)
000007bc 41fa006e LEA L86,A0
000007c0 4850 PEA (A0)
000007c2 41fa006a LEA L87,A0 ; 'Thank
000007c6 4850 PEA (A0)
000007c8 3f3c0834 MOVE.W #2100!$834,-(A7) ; ^1^2^3
000007cc 4e4fa194 TRAP #15
000007d0 DC.W sysTrapFrmCustomAlert

We see that the thank you form has 3 variables, ^1^2^3, and they are loaded from the A0 register. The first two are basically blank, then our thank you message is passed. So, rather than re-invent the wheel, let's just re-use the code that is there to display our serial.
I re-wrote it as follows

000007b0 b0adfe52 CMP.L -430(A5),D0
000007b4 2f00 MOVE.L D0,-(A7)
000007b6 4857 PEA (A7)
000007b8 4e4fa0c9 SysTrapStrItoA
000007bc 41fa006e LEA L86,A0
000007c0 4850 PEA (A0)
000007c2 41fa006a LEA L87,A0 ; 'Thank
000007c6 4850 PEA (A0)
000007c8 3f3c0834 MOVE.W #2100!$834,-(A7) ; ^1^2^3
000007cc 4e4fa194 TRAP #15
000007d0 DC.W sysTrapFrmCustomAlert

As you can see, we have simply replaced the first variable instrution with our instructions to present the serial, so now we are passing the alert firstly our serial, then the blank variable, then the thank you message, which is displayed on the alert in reverse order, so it says Thank You, followed by our serial.

Hope that makes it a bit clearer, seeing it in an app that you have patched already yourself. Don't worry though, it took me ages to make my first working keygen.

A couple of words of advice, prcedit is definitely the way to go in my opinion, stick with it, but do get yourself SouthDebugger instead of debuffer, it is far superior, and the version 18alpha available from here works perfectly with the OS5 simulator as well. The best thing about South is, you don't have to manually convert registers from hex to decimal, and once you have broken into it, you can step through the app line by line to follow a key check routine, which can be really useful to see where to place your keygen instructions.

Keep up the good work.

SubVert

P.S. attached is my keygen prc

P.P.S just re-read your prereg instructions. Note that all you did was kill the register nag at the end of the level. Other unregistered restrictions may still be active, so it is not strictly a pre-reg patch.
Also, in prcedit, you are searching up or down for the call for the link L76 or whatever. Much better to use the LCR tab to find the call, there may well be more than one call to the link.
Also on prcedit, if you have a call to a link (i.e. BNE Lxx) and want to know what is at the link, highlight the Lxx and press F10, and it will jump to the link code. Have a look, and press F12 to get back to the original call again.
Finally, to edit the code, simply press F9 to jump to the hex editor at the point where you were in the code, and F9 to go back to the code. This is invaluable when you have multiple code tabs.



man nice lesson u got here. thanks ab, hope to start my contribution soon.

adambomb
12-20-2006, 20:04
man nice lesson u got here. thanks ab, hope to start my contribution soon.
I cant take credit for it i just posted it ,theres another tutorial a page or 2 back the one that say's baddaboom baddabing!
So if you like this one youll love that one
Have fun:)

adambomb
12-20-2006, 20:07
Hmmm, I got a PM about DialByPhoto... apparently you still need to use all 1s and cancel when it tries to connect. I think that's about the best I can do until ya'll get me a Treo :). I won't feel like my toes are being stepped on if someone else (who has the means to watch it run and to test it) 'finishes it up.' Be sure to add yourself to the "About" screen if you do tho... I wouldn't want all the credit (if you're unsure how to do that, send me your finished product and I'll add you and send it back!).


About Dmitry's apps... the man is a genius IMO. He's making things do things they were never meant to do, so of course there are some stability issues. Uncache didn't seem to change much for me. Actually, same goes for UMDH... nothing that would run without it seems to run with it... and it does create some stability issues. The only Dmitry app I use is MaxX, which is, compared to the others, very mild.


And one other thing... why can't we use signatures on this forum? I mean, I agree that a bunch of images and animations at the end of every post is really distracting and clutterful, but some text is okay. I came up with a great little signature that I use on another forum:

...::: Ode to Me :::...
Check the "About" screen
if the app runs for free,
for "Cracked by: IamAJD"

& feel free to thank me!

MAN! maxX thats on my treo and i dont even know how it got on there nor did i know it was a demitry app,I will say even though i dont like his apps there is no denying that he is a genius

magare
12-20-2006, 20:13
Serial does not work !!! anymore. (blacklisted I guess).
Cheers!

NEW POCKET TUNES UPDATE!

Go download it, serial still works.

Pocket Tunes Version History Version 4.0.1 12/19/06

Bug fix: Pocket Tunes v1 skins show up blank (#3886)
Bug fix: Internet Radio station name sometimes gets corrupted (#3891)
Bug fix: Crashes on unsupported Sony devices (#3892)
Bug fix: Cancelling from first-time welcome screen doesn't set trial correctly (#3893)
Bug fix: Some skins can freeze the device when Fonts4OS5, FontSmoother, or PiLoc is installed (#3898, #3912)
Bug fix: Too many timeout errors loading Internet Radio stations (#3900)
Bug fix: Scrolling text areas don't scroll at constant speed (#3905)
Bug fix: Fix crash and prevent reset loop on Treo 600 (#3916)
Bug fix: Pocket Tunes freezes

somon
12-20-2006, 20:23
i first used the ota installer --> didn't work anymore
installed 4.0.0 --> didn't work too
erased saved & unsaved prefs with resco explorer
restarted ptunes4.0.0 --> serial accepted
installed ptunes with hotsync (only the main app)
started the app
About PocketTunes shows 4.0.1
:)

adambomb
12-20-2006, 20:23
Serial does not work !!! anymore. (blacklisted I guess).
Cheers!
That doesnt suprise me 1 bit! Considering when you enter the words crac* or patc* ,or keyge* into the search on the net this forum is all over the place (I mean in a big way!!)this forum is very slack and the programmers are doubleing up and if you think im just being paranoid as someone mentioned earlier than just see for yourself ,my only supprise is that this place is still up and strong,as smart as some of the folks here are you would think they would have figured this out the day ,like 50 new people showed up:p anyway just my observation and opinion

iamajd
12-20-2006, 20:34
MAN! maxX thats on my treo and i dont even know how it got on there nor did i know it was a demitry app,I will say even though i dont like his apps there is no denying that he is a genius

If you use PiscelBrowser or NetFront (or FireFront!), you'll need MaxX. It translates the Sony sysTraps so that the programs can run on non-Sony hardware. It also lets them run fullscreen... but Treo's dont have that option. So, if you don't use those programs, feel free to delete MaxX. The built in Delete system probably won't work. CleanUninstaller or RescoExplorer will take care of it though. After deleting it, your phone should probably reset.

quickstang
12-20-2006, 20:39
Hmmm, I got a PM about DialByPhoto... apparently you still need to use all 1s and cancel when it tries to connect. I think that's about the best I can do until ya'll get me a Treo :). I won't feel like my toes are being stepped on if someone else (who has the means to watch it run and to test it) 'finishes it up.' Be sure to add yourself to the "About" screen if you do tho... I wouldn't want all the credit (if you're unsure how to do that, send me your finished product and I'll add you and send it back!).


About Dmitry's apps... the man is a genius IMO. He's making things do things they were never meant to do, so of course there are some stability issues. Uncache didn't seem to change much for me. Actually, same goes for UMDH... nothing that would run without it seems to run with it... and it does create some stability issues. The only Dmitry app I use is MaxX, which is, compared to the others, very mild.


And one other thing... why can't we use signatures on this forum? I mean, I agree that a bunch of images and animations at the end of every post is really distracting and clutterful, but some text is okay. I came up with a great little signature that I use on another forum:

...::: Ode to Me :::...
Check the "About" screen
if the app runs for free,
for "Cracked by: IamAJD"
& feel free to thank me!



Because the mods don't have that selected as a function for signatures.

Same reason we have to quote non-stop is because we are replying to things that SHOULD BE THEIR OWN TOPIC.

Like I said before, things would be SO much easier. For instance if we had

Topic:

PocketTunes
Toysoft programs
ShSh programs

etc etc, we could have a thread for each individual program or developer. They could be made stickies and searching would be MUCH better and people wouldn't ask 24/7. If people saw 5 stickies to developers or even threads as software we would be able to just post a new version in each thread. Then all the files would be in that same thread.

You would be able to look for an old Ptunes if a new one doesn't work. Find help on the program, get a serial, etc etc.

Why though cant we do this? Because THE MODS OR ADMIN WONT set it up like this.

And I KNOW it can cause this is a Vbulletin board. They are either too lazy, or just dont see how it is benefcial.

I'll tell you that its very frustrating when you use other Vbulletin boards and they are laid out so much better. Makes it hard to use this one. Say I missed a day and there are now 5 new pages. Say that in one of those pages a program was posted I wanted. I would have to serch all those pages.

Now if there was a thread for that particular software, all I would have to do is check that THREAD and not 20 replys per page.

And again, all of this can be set-up, including the signature deal. You just have to get the people who run this thing to change it. And so far no good.

adambomb
12-20-2006, 20:44
Because the mods don't have that selected as a function for signatures.

Same reason we have to quote non-stop is because we are replying to things that SHOULD BE THEIR OWN TOPIC.

Like I said before, things would be SO much easier. For instance if we had

Topic:

PocketTunes
Toysoft programs
ShSh programs

etc etc, we could have a thread for each individual program or developer. They could be made stickies and searching would be MUCH better and people wouldn't ask 24/7. If people saw 5 stickies to developers or even threads as software we would be able to just post a new version in each thread. Then all the files would be in that same thread.

You would be able to look for an old Ptunes if a new one doesn't work. Find help on the program, get a serial, etc etc.

Why though cant we do this? Because THE MODS OR ADMIN WONT set it up like this.

And I KNOW it can cause this is a Vbulletin board. They are either too lazy, or just dont see how it is benefcial.

I'll tell you that its very frustrating when you use other Vbulletin boards and they are laid out so much better. Makes it hard to use this one. Say I missed a day and there are now 5 new pages. Say that in one of those pages a program was posted I wanted. I would have to serch all those pages.

Now if there was a thread for that particular software, all I would have to do is check that THREAD and not 20 replys per page.

And again, all of this can be set-up, including the signature deal. You just have to get the people who run this thing to change it. And so far no good.
Heres the mods dont tell us tell them:

Bert (http://forum.gsmhosting.com/vbb/member.php?u=596), Drug_Store (http://forum.gsmhosting.com/vbb/member.php?u=15312), ..::Neo::.. (http://forum.gsmhosting.com/vbb/member.php?u=14178), essojay (http://forum.gsmhosting.com/vbb/member.php?u=13808), GSM Coolhawk (http://forum.gsmhosting.com/vbb/member.php?u=7751)

quickstang
12-20-2006, 20:45
That doesnt suprise me 1 bit! Considering when you enter the words crac* or patc* ,or keyge* into the search on the net this forum is all over the place (I mean in a big way!!)this forum is very slack and the programmers are doubleing up and if you think im just being paranoid as someone mentioned earlier than just see for yourself ,my only supprise is that this place is still up and strong,as smart as some of the folks here are you would think they would have figured this out the day ,like 50 new people showed up:p anyway just my observation and opinion

That's why we should send one another PMs and then give an e-mail cause if we end up vanishing one day out of know where, finding all of us might be hard.

Also too like I mentioned, if we ever wanted to start our own Vbulletin board, we would be looking at $160 to own the license. Updates are free for a year then $30 after.

The biggest fee is the intro fee, then after that, it wouldn't take but a handful of people, $5 to keep it running. And I am SURE people would be willing.

I mean even if we have 16 people on here go in $10 each, that's a new board :D We would just need a site. Then we could set it up HOW WE WANT, then have mods, stickies, signatures, etc etc.

If we had enough people interested we could do this. Also too we wouldn't be a part of the GSM forum which would eliminate the HUGE overload you get saying its too busy.

It would be JUST a palm forum. We could add a windows one too if we want, but it would just be a whole seperate category.

vineethraj
12-20-2006, 20:50
[quote=quickstang;2153885]Because the mods don't have that selected as a function for signatures.

Same reason we have to quote non-stop is because we are replying to things that SHOULD BE THEIR OWN TOPIC.

Like I said before, things would be SO much easier. For instance if we had

Topic:

PocketTunes
Toysoft programs
ShSh programs

etc etc, ....



seems to me that , vil have a lot f threads like a 100 or even more, coz der r so may apps out der.... if v have a thread for each app or a developer.

quickstang
12-20-2006, 21:00
[quote=quickstang;2153885]Because the mods don't have that selected as a function for signatures.

Same reason we have to quote non-stop is because we are replying to things that SHOULD BE THEIR OWN TOPIC.

Like I said before, things would be SO much easier. For instance if we had

Topic:

PocketTunes
Toysoft programs
ShSh programs

etc etc, ....



seems to me that , vil have a lot f threads like a 100 or even more, coz der r so may apps out der.... if v have a thread for each app or a developer.

True, but that wouldn't be any different than 100 people asking 100 different questions then posting newer ones. One thing would be that once that developer has a thread you dont need to create another one.

You don't know how many times on one board I use to moderate people asked about Creatine (fitness board) got so old they made a sticky. And I mean you'd prob be looking at a 1000 plus.

I can tell you that even if we did have 100 developer threads, that when it came time to find a new version, you would know EXACTLY where to go. Wouldn't have to dig through 100s of replys.

I'll tell you that is easier then you think. The one board I use to moderate has 2500 people online now, and 452 THOUSAND members :eek:

Try moderating that. lol

skedone
12-20-2006, 21:04
if u want a forum y u need a payed one i use a free one for two of my forums and they are great better than this infact

Smoove03
12-20-2006, 21:07
Please let me know if this app gives you any problems.

This software is patched. There is no need to register. If at anytime you decide to look at the
"About" screen and it says to register, you DO NOT have to register. But if you do decide to enter
a key, it will accept any key you enter.

This software came with 2 more .exe files that I did not include in this file. It was a setup.exe and PMTReg.exe or something like that. I did not need those to run the app, so I did not include them. I simply installed pmtxl.patched.prc to my handheld and everything worked fine.

Enjoy!
_______________________

With PMT you keep track of your money! Clear reporting, reminder and overdraft alarms, and convenient synchronizing with CSV files are features PMT offers like no other package.

The highest five star rating from ZDNET confirms PMT is a great tool, and new features are being added all the time!
Feature Summary:
Easy entry and editing of income and expenses.
Easy selection of date ranges to view your entries.
Entry of future transactions, and display of running balance to show you if you can meet your obligations.
Reminders.
Summary balance sheet and income/expense statements.
Overdraft warnings.
Easy reconciliation with your bank statements.
System Find support.
Multiple databases.
Multiple Currencies.
Easy Synchronization.
Full year of support.

quickstang
12-20-2006, 21:13
if u want a forum y u need a payed one i use a free one for two of my forums and they are great better than this infact

Cause Vbulletin seems to be the big daddy of them all and is what most people use. Now if you can find one that you don't have to pay for that will do all the same things, then that is great.

We could use Simple Machines Forum which is actually free and seems to do pretty much everything.

http://www.simplemachines.org/

And an example of it being used would be mytreo.net

http://mytreo.net/forum/index.php

ishkabible
12-20-2006, 22:00
how is chatteremail compared to snapper, searched n got to know that chatter is better. wot say u guys ?


As someone that has used Snappermail for years and just started playing with Chatteremail, my vote is for Chatteremail. The reasons are:

1) Cleaner layout makes it easier to read emails.
2) Background (Interruptable) processes let phone calls through.
3) Version 3 has encryption so if your Treo is stolen they can't read your email.
4) Much more activity by the developers.

My 2 cents.

magare
12-20-2006, 22:10
You're right. I am surprised this forum still exists as it is everywhere on google.
I think it's about time to get banned....

That doesnt suprise me 1 bit! Considering when you enter the words crac* or patc* ,or keyge* into the search on the net this forum is all over the place (I mean in a big way!!)this forum is very slack and the programmers are doubleing up and if you think im just being paranoid as someone mentioned earlier than just see for yourself ,my only supprise is that this place is still up and strong,as smart as some of the folks here are you would think they would have figured this out the day ,like 50 new people showed up:p anyway just my observation and opinion

mompalm
12-20-2006, 22:53
someone posted some instructions a while back on how to get around the 7 day trial period on UDMH. I use the technique on my phone and it works fine.

You have to use PrefRemover (attached at bottom).

Install that and UDMH (im sure this has been posted here so use search if you dont have it).

Run PrefRemover and check off this preference in the list:
psys 30020

That is the preference for UDMH that tracks how many days you've had it. PrefRemover will periodically delete that preference made by UDMH so that the trial period will never end.

peace
Any info on how we can use this with other apps?

Smoove03
12-20-2006, 22:58
You're right. I am surprised this forum still exists as it is everywhere on google.
I think it's about time to get banned....

the only thing im worried about is some developer or something catching up with me for patching their software! but i found this site by using google!

iamcarl4ever
12-20-2006, 23:13
If worst comes to worst why don't we just move our "Activities" to a chat room :p

BTW is there another serial for pTunes 4.0.1 or does the 4.0.0 one still work? :confused:

elcabezon
12-20-2006, 23:54
I gotta admit it took me forever to find this site. I'd hate to see it all of a sudden disappear and then to lose this resource. I'm up for donating to keep this "group" together.

adambomb
12-20-2006, 23:54
You're right. I am surprised this forum still exists as it is everywhere on google.
I think it's about time to get banned....
I dont know what you mean by it's time to get banned ,but from where here,HA HA HA ,LOL ,LOL:) :p :D :D :D

adambomb
12-21-2006, 00:00
I gotta admit it took me forever to find this site. I'd hate to see it all of a sudden disappear and then to lose this resource. I'm up for donating to keep this "group" together.
I dont know about donateing or what can be done about what is already done but they should put a lock on the forum and get some more mods and rules like no posting crac* ,that ship's bad for ya anyway or patc* or key ge* but good luck with that but who knows money does talk and maybe they would hear that or like everyone else said we could ban together I mean as far as i'm concerned this is a kick as$ hobby

wheeliestunt
12-21-2006, 00:15
Any info on how we can use this with other apps?

Search, I posted this method some time ago with the prefs that have to be removed....

If worst comes to worst why don't we just move our "Activities" to a chat room :p

BTW is there another serial for pTunes 4.0.1 or does the 4.0.0 one still work? :confused:

It is supposed to work...

I gotta admit it took me forever to find this site. I'd hate to see it all of a sudden disappear and then to lose this resource. I'm up for donating to keep this "group" together.

We definitely should be moving the comunity somewhere else ;)

tjshmeejay
12-21-2006, 00:39
Does anybody have a patched/cracked version of the latest Phone Technician. I believe the lasteste version is 2.74, or even a key generator? Thanks.

iamajd
12-21-2006, 00:46
the only thing im worried about is some developer or something catching up with me for patching their software! but i found this site by using google!

You're not alone. Makes me especially nervous because everything I've patched has my handle in it. Ya know, like when the cops caught the crooks in Home Alone and they knew where they'd been because the one guy always flooded the sinks.... I'm getting so old.

We definitely should be moving the comunity somewhere else

SO, if we did get a financier or we pooled our money and managed to get a license for vBulletin... wouldn't we also need hosting space and DNS name stuff? Who pays for those reoccuring fees? I would never have signed up here if they required a registration fee... even a one time 5$ fee. And what about the legal aspects... if the server resided in *most* countries it could easily get shutdown. How do we find a reliable, affordable Russian server? I'm sure we could do it. I could and would help and would be glad to do so. But I don't have the know-how for most of what would be required.

magare
12-21-2006, 00:51
I did not say "It's time to get banned". I said "It's about time to get banned"

Minor detail but major difference....

Cheers
I dont know what you mean by it's time to get banned ,but from where here,HA HA HA ,LOL ,LOL:) :p :D :D :D

FEDATO
12-21-2006, 01:20
Does anyone have mini-keyboard?
Thanks:)

koricua74
12-21-2006, 02:13
If worst comes to worst why don't we just move our "Activities" to a chat room :p

BTW is there another serial for pTunes 4.0.1 or does the 4.0.0 one still work? :confused:

I upgraded and had no problems (treo 680) using the same serial for 4.0

skibum_nj
12-21-2006, 02:38
Cause Vbulletin seems to be the big daddy of them all and is what most people use. Now if you can find one that you don't have to pay for that will do all the same things, then that is great.

We could use Simple Machines Forum which is actually free and seems to do pretty much everything.

http://www.simplemachines.org/

And an example of it being used would be mytreo.net

http://mytreo.net/forum/index.php

We could regroup at alt.binaries.warez.palmpilot if necessary. At least until someone can come up with another website.

fnt
12-21-2006, 02:42
I admin a Private Satellite Testing board...Entry by permission only ..I'd be willing to open a database for ya if need be..Only Catch is ..Its gotta carry my site name in the link..but thats only cause You'd be using one of my DB's...Lemme know...I've been using this site pretty much since it opened I can give a little back..

skibum_nj
12-21-2006, 03:09
Does anybody have a patched/cracked version of the latest Phone Technician. I believe the lasteste version is 2.74, or even a key generator? Thanks.

Is that darn search function not working again?!? :rolleyes:

Use the keygen in post 2115.

zub3qin
12-21-2006, 03:54
As someone that has used Snappermail for years and just started playing with Chatteremail, my vote is for Chatteremail. The reasons are:

1) Cleaner layout makes it easier to read emails.
2) Background (Interruptable) processes let phone calls through.
3) Version 3 has encryption so if your Treo is stolen they can't read your email.
4) Much more activity by the developers.

My 2 cents.



The other reason to use ChatterEmail is that it is the only app to my knowledge that lets you access your work email if you use Microsoft Outlook Web Access (you login to your work email via a website)-- this is done with the Chatter EX Plugin.

Unfortunately, I have never seen a keygen or serial that lets you use this Chatter EX Plugin. Does anyone know how to get the plugin?

adambomb
12-21-2006, 04:20
I admin a Private Satellite Testing board...Entry by permission only ..I'd be willing to open a database for ya if need be..Only Catch is ..Its gotta carry my site name in the link..but thats only cause You'd be using one of my DB's...Lemme know...I've been using this site pretty much since it opened I can give a little back..
If your talkin FTA:eek: I've got a viewsat thanks to the lack of support for the spacestar 500/700 Man you rock and your offer get's my vote 100%
I'm not down with bieng a sitting duck and privacy should be a factor thank you for your excelent offer WHO'S WITH US?It sounds like wheelie and iamajd are down and they already have my vote for BIGDOG MODERATORS:D Ring in your votes now and lets get this party started

italiangspot
12-21-2006, 04:42
If your talkin FTA:eek: I've got a viewsat thanks to the lack of support for the spacestar 500/700 Man you rock and your offer get's my vote 100%
I'm not down with bieng a sitting duck and privacy should be a factor thank you for your excelent offer WHO'S WITH US?It sounds like wheelie and iamajd are down and they already have my vote for BIGDOG MODERATORS:D Ring in your votes now and lets get this party started


i am with ya, have been following this thread since the early single page days, lol

italiangspot
12-21-2006, 04:46
i got cityid pat**ed on here and it seems not to be the best, many times especially when i use bluetooth, dont ask me why...when i hang up i get the request if i would like to register the software, if i hit yes, it just sends me to the cityid call log, if i say no it just goes away...the problem is that it keeps popping up all the time at the end of calls, this program has no way to register it....

can anyone take a peek..

thanks in advance

wheelies post

City ID. After regging, you can put original prc back and it will still be registered.

http://rapidshare.com/files/1743621/CityID__Patch.zip

I hope CityID does too. I can't try it as -as you know- I don't have a Treo to try it out

adambomb
12-21-2006, 05:29
Does anyone know where i can find pck files to use for fang/claw?
Perferably as many as i can get:p
other than the lair as i have made several posts there and still cant seem to unlock
that biatch! No wonder no one wants to post there and theyre closing shop
anyway thanx

iamajd
12-21-2006, 05:42
I can't try it as -as you know- I don't have a Treo to try it out ;)

i got cityid pat**ed on here and it seems not to be the best, many times especially when i use bluetooth, dont ask me why...when i hang up i get the request if i would like to register the software, if i hit yes, it just sends me to the cityid call log, if i say no it just goes away...the problem is that it keeps popping up all the time at the end of calls, this program has no way to register it....

can anyone take a peek..

thanks in advance

As I've said many times before, if you guys wanted to get together and get US some Treos, it would greatly improve our ability to patch Treo-specific software! So, I am currently accepting donations via PayPal to buy me and wheeliestunt some Treos. And to get vBulletin, hosting space, and a name... but first I want a Treo. :D

Edit: Link removed, if you'd like to donate to our cause, please PM me.

adambomb
12-21-2006, 05:45
Is undupe good or bad app please let me know if it just erases anything or hits the targets and is it stable
Thanx

iamajd
12-21-2006, 05:58
Oh yeah, and I wanted to publicly give props to BlindDude for taking the reigns and getting the process started. Wouldn't know what to do if I lost you guys. Alright, I'm going to go to bed before I get all teary-eyed. :)

anythingbutmine
12-21-2006, 06:51
iamajd,
Do you think you could create an XML file for the patches you've done so far so we can import them into pwcpp and patch future versions ourselves? Specifically I'd like an XML for this new DialByPhoto app you patched for us. It's under beta as you know and I'm sure many more builds will be coming along, so I'd like to be able to patch them myself without having to request your assistance each time :)

wheeliestunt
12-21-2006, 07:08
As I've said many times before, if you guys wanted to get together and get US some Treos, it would greatly improve our ability to patch Treo-specific software! So, I am currently accepting donations via PayPal to buy me and wheeliestunt some Treos. And to get vBulletin, hosting space, and a name... but first I want a Treo. :D


I second that request :D

....All right, time to sleep as I'm starting to make no sense.

wheeliestunt
12-21-2006, 07:20
i got cityid pat**ed on here and it seems not to be the best, many times especially when i use bluetooth, dont ask me why...when i hang up i get the request if i would like to register the software, if i hit yes, it just sends me to the cityid call log, if i say no it just goes away...the problem is that it keeps popping up all the time at the end of calls, this program has no way to register it....

can anyone take a peek..

thanks in advance


Did you use the patched one and registered. Then installed the original file?....If that's what you did, then it has nothing to do with the patch as it's already gone.
BUT...it may be MUH's fault.....by example, when I use ClipPro (clipboard app) inside an app that is using MUH, then it will ask for registration. Why?...becuase that app is using another UserName and ClipPro wants a registration for that UserName. That's the main reason why I wanted to leave MUH in the past (and I did)....

Check if that's your problem. Otherwise try this one...register with the patched one and then install the original. Not my patch so I don't know if it works ;)

Have Fun :D

neilyoung
12-21-2006, 07:24
if you guys decide to jump ship let me know (personally i dont feel there is any problem)... as far as serving goes the provider or the location of the server is of primary importance -> ideally one wants to be running the service from china or russia (which dont care or enforce copyright law) or india or holland... the way things get shutdown is the isp is given a complaint from a network abuse center and in turn terminate service to the operator (the united states is the worst place to operator a server as far as enforcement goes)... ideally the operator would run the service from another country from which they are located in. for the most part developers dont care too much about small time piracy - it creates enthuasiam and a following for their product which in turn results in popularity and a percentage of people will pay for the software and another percentage who are not literate will pay for it and a third group will pay simply because it is the socially moral accepted thing to do - all groups of consumers look at the value added service of support (which is the most important part of supplying a product). in fact if anyone is wondering why not alot of protection for the most part is built into palmos apps is that palm hardware doesnt support turnkey drm ... the philosphy is to simply put it out of reach of 98% of the population to be able to do. anyway thats my take on it.

wheeliestunt
12-21-2006, 07:36
if you guys decide to jump ship let me know (personally i dont feel there is any problem)... as far as serving goes the provider or the location of the server is of primary importance -> ideally one wants to be running the service from china or russia (which dont care or enforce copyright law) or india or holland... the way things get shutdown is the isp is given a complaint from a network abuse center and in turn terminate service to the operator (the united states is the worst place to operator a server as far as enforcement goes)... ideally the operator would run the service from another country from which they are located in. for the most part developers dont care too much about small time piracy - it creates enthuasiam and a following for their product which in turn results in popularity and a percentage of people will pay for the software and another percentage who are not literate will pay for it and a third group will pay simply because it is the socially moral accepted thing to do - all groups of consumers look at the value added service of support (which is the most important part of supplying a product). in fact if anyone is wondering why not alot of protection for the most part is built into palmos apps is that palm hardware doesnt support turnkey drm ... the philosphy is to simply put it out of reach of 98% of the population to be able to do. anyway thats my take on it.

WOW, That sounds quite good....:cool:

BlindDude
12-21-2006, 08:09
I have thought about that too. For example: I never would of heard of most this software if I did not google a search for Palm Appz. I have bought the programs I "have to have" and have visited the developers sites and learned of many many new things.
All this is a positive for the developer, otherwise I would of not even known.

skedone
12-21-2006, 09:31
http://www.phpbb.com/ thats the best in the market if u ask me and its free have a look at one of my sites if u want to know if its any good the site addy is r-force.org it does all vbullycosts-a-ton does and more

also no china is not good anymore russia is about only safe place and even that is getting close to info share as for protection it easy disable guest accounts and make it 20 posts before downloads become available

mikes511
12-21-2006, 13:00
hi guys anyone with this software looks cool especially when using our treo 650 on dark areas...

mikes511
12-21-2006, 13:08
thanks so much for the medicalwizard keygen adambomb!!!

rajkumarpc
12-21-2006, 14:36
I have searched everywhere for a way to get the Chatter EX plugin to not be a time limited 30 day demo version.

I have Chatter 3.0.1 fully registered, but evidently the EX plugin (needed if you want to use get mail from OWA - Outlook Web Access) requires some other type of serial or crack.

Anyone have any suggestions (or an alternative mail program that lets you access Outlook Web Access mail?)

Thanks! can u please let me know the user name and serial for chatter 3.0.1

rajkumarpc
12-21-2006, 14:43
can any one provide chatter mail 3

ime95mos
12-21-2006, 15:33
Pocket Tunes 4 anybody?

italiangspot
12-21-2006, 15:48
Pocket Tunes 4 anybody?

i am assuming u didnt search.....


here is the keygen, application is posted in thread with rapidshare link

instructions are also all over thread

;)

overkill_palm
12-21-2006, 16:08
i am assuming u didnt search.....


here is the keygen, application is posted in thread with rapidshare link

instructions are also all over thread

;)
Ähäm...Thats a keygen for v.3.xx I think it won't work with v.4 ;)

italiangspot
12-21-2006, 16:15
i am pretty sure that is the only keygen i used, after a few tries it regged the 4.0 version

i am running the newest one

or can try this serial

3HJRX-HYUA2

ime95mos
12-21-2006, 16:16
i am assuming u didnt search.....


here is the keygen, application is posted in thread with rapidshare link

instructions are also all over thread

;)

No good my friend. This is for V3.x if you did not notice.

quickstang
12-21-2006, 16:17
Hey, i'm in cause I suggested we do our own board :D

And since I have moderated one of the biggest boards out there before i'd be glad to do our new one (if we do one)

And yes, the phpp or the simple tech bulletins we could do cause they are free.

I'm not sure the amount of space we need, but if we happen to need a 750GB or 1TB hard drive I can get a discount on those cause I work at one of the huge electronic places not to be named :D

Then of course I could ship it if someone decides to hosts. I do have a seperate compute that just sits I could use, but I would need the appropriate software installed on it to get it to run.



If your talkin FTA:eek: I've got a viewsat thanks to the lack of support for the spacestar 500/700 Man you rock and your offer get's my vote 100%
I'm not down with bieng a sitting duck and privacy should be a factor thank you for your excelent offer WHO'S WITH US?It sounds like wheelie and iamajd are down and they already have my vote for BIGDOG MODERATORS:D Ring in your votes now and lets get this party started

Smoove03
12-21-2006, 16:23
Reg w/any serial! Not the best game in the world, but hey :)
_____________________

Dungeon Lore is a fantasy role playing game. The object of the game is to take an adventurer through a dungeon, solving puzzles and adventures that will increase his or her powers, talents and abilities, and in the end, solve a central mystery that will emerge gradually as you explore this world.
Features:

10 level dungeon to explore
40 different monster types to encounter
Chests and traps to disarm
New objects to find and use
Automatic mapping of dungeon as you explore
Cool sound and graphics

quickstang
12-21-2006, 16:23
Overkill, since you always do these, can you get this one for me? Really wish I could find a key gen for that one since they update it all the time.

wheeliestunt
12-21-2006, 17:18
can any one provide chatter mail 3

Search...

Pocket Tunes 4 anybody?

Search...

can u please let me know the user name and serial for chatter 3.0.1

Search...

i am assuming u didnt search.....


here is the keygen, application is posted in thread with rapidshare link

instructions are also all over thread

;)

The keygen doesn't work in Pocket Tunes 4.x....

Here's the link to the program and serial I posted a few days back...

http://rapidshare.com/files/7631678/pTunes__Serial.zip

Hey, i'm in cause I suggested we do our own board :D

And since I have moderated one of the biggest boards out there before i'd be glad to do our new one (if we do one)

And yes, the phpp or the simple tech bulletins we could do cause they are free.

I'm not sure the amount of space we need, but if we happen to need a 750GB or 1TB hard drive I can get a discount on those cause I work at one of the huge electronic places not to be named :D

Then of course I could ship it if someone decides to hosts. I do have a seperate compute that just sits I could use, but I would need the appropriate software installed on it to get it to run.

After just writing "search" three times in one post.....I really backup the idea of moving out somewhere else!!!

onny_kitty
12-21-2006, 17:19
I've downloaded Cake Mania with keygen from this forum but the key generated doesn't work. If anyone has a version of the game that doesn't need registration could you please post it. Thank you very much...

quickstang
12-21-2006, 17:20
Pay attention if you use QuickNews.

Some of you use QuickNews as do I, and for those that don't know, it will store your image cache, and cache either on your PALM or your SD card.

There is a selection under options to select them to go to card.

Options---->Preferences---->Storage

Here you will see your options. Make sure you have store feeds on card and cache on card CHECKED unless you are running a LifeDrive and you have the room to store all of that stuff.

You can also limit the Cache size as well.

The reason I am mentioning this is that I am converting all my stuff over right now from my 1GB SD card to the new 2GB one I have.

I noticed it was taking a bit, and that's because 17mb is transfering over. I had forgotten to clean the cache out before I did this.

IT IS TRANSFERING 2605 IMAGES OVER. So i'm going to cancel, clear the images then re-install since it is taking forever.

So... If anyone is experiencing low storage on their device or on your card, check your QuickNews options, and then clear the cache and update when needed or everything will stay on there until you clear it.

Hope this helps if anyone is using it, that way you don't hog up your SD card, or for that matter your device if you haven't checked the boxes to store it all on the card.

Unfortunately there is no place for stickies in this forum :mad: so you'll just have to see this post when you see it.

This is the problem with this board. There might be some useful information, but it would be so hard to find unless you knew exactly what you were looking for.

That's why I motion to get us the board as soon as we can. :D

wheeliestunt
12-21-2006, 17:24
Overkill, since you always do these, can you get this one for me? Really wish I could find a key gen for that one since they update it all the time.

Here's a 2Day KeyGen...

http://rapidshare.com/files/8412562/2day_keygen.zip

Apparently done by some french guy. Let us know if it works :D

italiangspot
12-21-2006, 17:52
heres quickipedia 1.12, quicknews 1.25b and columbia concise:

http://www.4shared.com/file/5529216/dd29ddc3/pocketsenseiconcisecolumbiaencyclopediav11palmosre gged-cscpda.html

http://www.4shared.com/file/5529011/40c99c0e/quick_news_v1_25b-sydbarrett.html

http://www.4shared.com/file/5529060/788f3a5f/quickipedia_v1_12_sydbarrett.html


i was trying to get quick news but link seems to be dead now...anyone have or can repost, i see the plugin for today...looking for the actual program

forget that, tried link again and now it worked...

says run patch and write down serial, do u then delete the patch file...? or not necessary, just copy over real program

: )

quickstang
12-21-2006, 17:58
i was trying to get quick news but link seems to be dead now...anyone have or can repost, i see the plugin for today...looking for the actual program

forget that, tried link again and now it worked...

says run patch and write down serial, do u then delete the patch file...? or not necessary, just copy over real program

: )


Don't forget this is the newest beta for QN

Not sure on the install. Don't remember really. I had an old one over a year ago and then just kept re-installing a new version over the other one.

onny_kitty
12-21-2006, 18:06
There is this game Einstein... The purpose is to solve the famous Einstein task... And I would love to have it if anyone has a cracked version. This game is a part of a pack also, it is called Brain Gym so maybe someone has that... Thanks

italiangspot
12-21-2006, 18:27
Blue Squirrel, blueSync never works right, twice it deleted things off my sd card, i would suggest people pick handheld overrights PC..i never delted files from PC but yet it deleted from sd card when syncing

adambomb
12-21-2006, 18:40
I was wondering if blazer 4.5 would work on the treo 650 and if so could someone please upload it for us poor unfortunate blazer 4.0 folks I believe that 4.5 is the stock browser for the treo 680 and also if that is correct can we get some feedback as to wether it's better than 4.0 and if so in what ways

rflores2323
12-21-2006, 18:48
I was wondering if blazer 4.5 would work on the treo 650 and if so could someone please upload it for us poor unfortunate blazer 4.0 folks I believe that 4.5 is the stock browser for the treo 680 and also if that is correct can we get some feedback as to wether it's better than 4.0 and if so in what ways

Ive read in treocentral that 4.5 would not work on the 650 for some reason.

Smoove03
12-21-2006, 18:56
Reg w/any serial!

http://rapidshare.com/files/8423070/Worklog_-_Patched.rar.html
__________________
Worklog is a tool for mobile time management. No matter where your are: at home, in your office or at a customer, you can always track the time your spend for your work. Next to the time Worklog tracks your mileage, too. Furthermore you can save a list of costs and add a comment to every activity. When you synchronize with your Windows PC all your collected data will be transfered to a database on your computer. The included PC program lets you view, print and export the data. Available in English and German.
Updated Description:

4.5.3 (04/24/06)
Bug in export and print fixed
Multiuser now via password
fixed bug in synchronization Worklog is now availabel in Spanish, English and German.

adambomb
12-21-2006, 19:10
Well guy's weve been talking about it and i've found a better place and they need support it seems that everyone who mostly has been there does no posting and they are ready to close if they dont get some good posters there and i like it there already it feels quite homey and i've already seen one person from here there anyway it's the leagondary lair and if anyone wants to check it out heres the address

http://thelair.ws/forums/index.php?act=idx

and the forum needs to be unlocked so dont get discouraged as i said they want posters and participators so i figured this would be a perfect place and no need to donate the forum already exists (sorry iamajd) i figure why not save a perfectly good palm/pda forum from calling it quits rather than trying to squeeze blood from a stone I mean think about it guy's if folks were gonna give you money than what the hell are they doin here?:p anyway thats where i'm gonna be spending most of my time now but i'll pop in from time to time

coorey
12-21-2006, 19:16
With the newer versions of Pocket Tunes, 4.0.0 and 4.0.1, I'm guessing that the company has released some type of blacklist for the universal key because it will no longer work. I started pTunes today and it popped up a notice saying the key that I was using is no longer valid for this product. So for those of you using the key, 3HJRX-HYUA2 , take caution might happen on your device as well.

So currently the keygen for the v.3 and the universal serial does not work (or at least for me). And wheeliestunt I downloaded your package and it worked great. . . . up until today.

omaRR
12-21-2006, 19:22
as far as streaming music to p-tunes... mine is working very nicely but i only have those channels that it came with, how does streaming music work exactly so i can find more channels on my own... or is that not possible? i thought i had read AB talking about streaming videos and junk on kinoma, i downloaded that pdb with all the files and the **** and all but that was reeally choppy, it kept buffering and not finding hosts or somethng like that... if i should find a website that has music of my choice for streaming how would i get it to work with ptunes which seems to be working good, atleast with the flamenco channel... its great sleeping music! and another thing is what do i search for when i am trying to find streaming music on the internet? (or am i completely lost and am making no sense because thats not what you do....

i searched on google streaming music, but it didnt exactly give me what i was looking for...

i thought maybe one had to go to a website and find where they play the music live for you and copy that address on ptunes and im good right... well this one doesnt give me a web address/ or streat address or whatever it just pops up a mini player thing... watch go here http://www.univision.com/content/channel.jhtml?chid=9486&schid=9497
and click and on top to the right where it says: escuchanos en vivo haz click aqui (literal translation: listen to us live, make click here (haha)) anyways i talk to much... any help would be great thanks.

omaRR

Smoove03
12-21-2006, 19:26
to adambomb...

ill make the switch, too as long as im not alone. i would like to see all of yall there.

Smoove03
12-21-2006, 19:47
There is no need to register. The 20 entry limitation has been removed. You may still reg w/any serial if you'd like, but you will see no difference.
____________________________

Lesson Plan is software for teachers to track the lesson plans for their classes. Since a handheld computer can easily fit in your shirt pocket or purse, you can work on your lesson plans whenever you have a few minutes, wherever you are!
Features include:

Ability to enter the start- and end-times for each period at your school
Ability to select the days on which you teach, including Saturdays and Sundays
Ability to enter up 25 classes that you teach
Quickly create your complete schedule by simply selecting a class from a popup list for each period of each day
View a summary of any day's lesson plans, by period
Attach a note to any school day
Ability to specify that there will be no classes on a certain day (e.g., due to a field trip)
Create templates of frequently-used text, which can be quickly inserted into any lesson plan
Ability to "bump" all or part of a lesson plan to the next time the class meets
Ability to print to an IR printer (PalmPrint (http://www.stevenscreek.com/palm/palmprint.shtml) required) directly from your handheld
Ability to set the start- and end-times for a period to the exact minute.
Times are now displayed in 24-hour format for users whose preference is set that way
Switch to another day in the current week in one tap
Switch to the same day in the previous or next week in one tap
Switch to the previous or next school day by writing a single character in the Graffiti area (skipping over non-school days)
Find function for quickly locating a lesson plan entry by keyword
Switch to the lesson plan entry for the previous or next time a class meets in one tap
For each lesson plan entry, store up to 1K of information
Create a separate lesson plan database for each school year, semester, quarter etc. as needed
Support for handhelds with a color display
View and print lesson plans on your desktop PC or Macintosh.
Detailed users manualThis is the PC version of Lesson Plan.

quickstang
12-21-2006, 19:49
I was wondering if blazer 4.5 would work on the treo 650 and if so could someone please upload it for us poor unfortunate blazer 4.0 folks I believe that 4.5 is the stock browser for the treo 680 and also if that is correct can we get some feedback as to wether it's better than 4.0 and if so in what ways

There was a fatsmode blazer made that was a hack, but most were having reset loops on the 650, so I doubt it.

Haven't heard of a stable one yet.

More reasons to get the 700p :D

ime95mos
12-21-2006, 19:52
Search...



Search...



Search...



The keygen doesn't work in Pocket Tunes 4.x....

Here's the link to the program and serial I posted a few days back...

http://rapidshare.com/files/7631678/pTunes__Serial.zip



After just writing "search" three times in one post.....I really backup the idea of moving out somewhere else!!!


Pockettunes 4 reg: Invalid Registration Code when I enter.

ime95mos
12-21-2006, 19:59
Ptunes works now! Thanks for the help.

I got the email about the PTunes V4 today therefor I thought it was completely new. Next I will do a search! :cool:

quickstang
12-21-2006, 19:59
Well guy's weve been talking about it and i've found a better place and they need support it seems that everyone who mostly has been there does no posting and they are ready to close if they dont get some good posters there and i like it there already it feels quite homey and i've already seen one person from here there anyway it's the leagondary lair and if anyone wants to check it out heres the address

http://thelair.ws/forums/index.php?act=idx

and the forum needs to be unlocked so dont get discouraged as i said they want posters and participators so i figured this would be a perfect place and no need to donate the forum already exists (sorry iamajd) i figure why not save a perfectly good palm/pda forum from calling it quits rather than trying to squeeze blood from a stone I mean think about it guy's if folks were gonna give you money than what the hell are they doin here?:p anyway thats where i'm gonna be spending most of my time now but i'll pop in from time to time


So then can we not post this stuff since the EUL said so? Just relatively speaking since we all know when we install programs on our computer we dont read them.

I hate to leave here then be minus what we are here for, cause if its just general Treo info there are MANY better places to go.

Any thoughts?

vineethraj
12-21-2006, 20:00
i was trying to get quick news but link seems to be dead now...anyone have or can repost, i see the plugin for today...looking for the actual program

forget that, tried link again and now it worked...

says run patch and write down serial, do u then delete the patch file...? or not necessary, just copy over real program

: )



heres a cracked one which gives d serial, then install the original prc. then over the installation , install the latest one which is attached below. lemme know wot hapns... ;)


delete the patched program den istall d new one, over which the latest....

iamajd
12-21-2006, 20:01
haha... the active users at thelair right now include:

iamajd, overkill_palm, quickstang, & adambomb... and i noticed omaRR's acceptance of the agreement too...

so, is this our new home? i really liked the idea of making out own board. =o( we could have enforced "SEARCH OR DIE!" rules and stuff.

time to start getting my post counts up on the new forums i've joined lately... *sigh*

quickstang
12-21-2006, 20:04
haha... the active users at thelair right now include:

iamajd, overkill_palm, quickstang, & adambomb... and i noticed omaRR's acceptance of the agreement too...

so, is this our new home? i really liked the idea of making out own board. =o( we could have enforced "SEARCH OR DIE!" rules and stuff.

Well if we can have our own category that would work, but I don't see any palm stuff like this yet.

Like I had mentioned in my other post this isn't the greatest forum for Palm info. Now I have lots to give, but I also enjoy the software as well which most are here for.

adambomb
12-21-2006, 20:09
to adambomb...

ill make the switch, too as long as im not alone. i would like to see all of yall there.
LOL! They let you use signitures there;)

vizeta
12-21-2006, 20:12
Hi :)
this is my 1st post

its keygen for mp3 ringer. it works gr8 on my treo 650.

just enjoy
;)

Smoove03
12-21-2006, 20:17
now..should i not be worried about the rules of the new forum?

"You agree, through your use of this service, that you will not use this bulletin board to post any material which is ... violative of any law.

You agree not to post any copyrighted material unless the copyright is owned by you or by this bulletin board."

i dont mind sharing and stuff, but this kind of thing worries me :(

quickstang
12-21-2006, 20:19
now..should i not be worried about the rules of the new forum?

"You agree, through your use of this service, that you will not use this bulletin board to post any material which is ... violative of any law.

You agree not to post any copyrighted material unless the copyright is owned by you or by this bulletin board."

i dont mind sharing and stuff, but this kind of thing worries me :(

Says no serial posts, and you cant upload any files either. I think we can do better than that really as far as a forum.

We could always suggest to the mods what we are looking at doing, and if they can just get in the stupid control panel and do the things we need we would all be happy

italiangspot
12-21-2006, 20:19
heres a cracked one which gives d serial, then install the original prc. then over the installation , install the latest one which is attached below. lemme know wot hapns... ;)


delete the patched program den istall d new one, over which the latest....


thanks for the info, allworks ok,,thanks

adambomb
12-21-2006, 20:31
now..should i not be worried about the rules of the new forum?

"You agree, through your use of this service, that you will not use this bulletin board to post any material which is ... violative of any law.

You agree not to post any copyrighted material unless the copyright is owned by you or by this bulletin board."

i dont mind sharing and stuff, but this kind of thing worries me :(
They all say that
i'm not sure yet but im pretty sure they locked the forum for a reason

wheeliestunt
12-21-2006, 20:33
I've downloaded Cake Mania with keygen from this forum but the key generated doesn't work. If anyone has a version of the game that doesn't need registration could you please post it. Thank you very much...

The Astraware keygen works perfectly, but it may take several attemps...

Pay attention if you use QuickNews....

Hope this helps if anyone is using it, that way you don't hog up your SD card, or for that matter your device if you haven't checked the boxes to store it all on the card.

Unfortunately there is no place for stickies in this forum :mad: so you'll just have to see this post when you see it.

This is the problem with this board. There might be some useful information, but it would be so hard to find unless you knew exactly what you were looking for.

That's why I motion to get us the board as soon as we can. :D


I second that once again!!!! :D

Smoove03
12-21-2006, 20:34
I tried and i dont know if this works or not. The trial only lets you play up to level 3 and then you have to register. I was not about to play through 3 levels of this game, so I dont know if this works or not, but feel free to try! Reg w/any serial...

If this gives you any problems, please let me know. ill look into it!

http://rapidshare.com/files/8434383/Dragon_Bane_2_-_Patched.rar.html

________________________________
Dragon Bane II features:


New game engine with dozens of new features to provide for a richer, more interactive role playing experience.
All new content. Not only is the game much larger than the original Dragon Bane game, but it has all new walls, monsters, characters, spells and character classes.
Users can store and play multiple adventures, each with their own set of save games. Using MythoLogical Software's upcoming "Dragon Bane II Adventure Construction Kit," third parties will be able to create and publish their own unique adventures running on the Dragon Bane II engine.The legend was true: the Dragon Bane sword was found to be the only effective agent against the Dragon King. With Kra'an defeated and his spirit imprisoned in the sword's gemstone, the dragon's power to disrupt the balance of good and evil was no longer a threat. A generation later, with the reconstruction of New Treleon forgotten, the Dragon Bane sword was entrusted to the Wizard's Council, and life had returned to normal.
Ever since Raamtha's apprentice was elected to lead the Wizard's Council, the King's Secret Guard have noted suspicious activity in New Treleon. There are rumors that Kra'an could be revived and shadowy figures have been seen frequenting murky taverns at night. Are the townsfolk fears misplaced, or is there a nefarious scheme in the works to bring Kra'an's revenge to the kingdom?
Updated Description:

1.0.6 (3/11/04) Extensive Tapwave Zodiac support
1.0.5 (7/31/03) (1) Add support for 5-way nav and Sony Jog dial (2) Print [NO INVENTORY ITEMS] when inventory is empty (3) Minor spell computation fixes.
1.0.4 (10/10/02) - Support for OS 2.0 devices, plus a half dozen other minor fixes and interface enhancements (see version history for details)
1.0.3 (6/27/02) - Add support for treo, plus other minor fixes
1.0.2 (4/12/02) - (1) Choosing new adventure would not create "temporary save" of current adventure. (2) Fixed rare case where an attack could cause the wrong spell to be cast which could lead to other problems.
1.0.1 (2/13/02) - Fixes about a dozen minor bugs (and one major one). Please see version history for details.

vizeta
12-21-2006, 20:36
hi :) here is annother keygen for teal lanch n teal master

just try these

adambomb
12-21-2006, 20:40
http://thelair.ws/forums/index.php
Hey wheelie your old school can we post this stuff in the lair?

Smoove03
12-21-2006, 20:48
http://thelair.ws/forums/index.php
Hey wheelie your old school can we post this stuff in the lair?

how do i get to our thread over at the new forum?

jennmicc
12-21-2006, 20:52
Does anyone know the easiest way to temporarily change the hotsync id on a palm that would allow me to reg a program (Atari Retro) to a specific s.n. Thanks in advance.:)

quickstang
12-21-2006, 20:55
Does anyone know the easiest way to temporarily change the hotsync id on a palm that would allow me to reg a program (Atari Retro) to a specific s.n. Thanks in advance.:)

Its called MUH. Multi User Hack.

Do a search and you'll find it

adambomb
12-21-2006, 21:07
I just want to show what happens to places that dont have thier $hit together CHECK IT OUT

http://home.pages.at/palmlinks/links.htm

cHECK OUT CODS AND SERI@-S AND W@RE7

wheeliestunt
12-21-2006, 21:15
http://thelair.ws/forums/index.php
Hey wheelie your old school can we post this stuff in the lair?

I'll be posting there so please don't ;)

how do i get to our thread over at the new forum?

I guess you need a certain amount of posts before....but how many?

magare
12-21-2006, 21:18
So the serial works for you? It does not work for me ?!?!?!?

Ptunes works now! Thanks for the help.

I got the email about the PTunes V4 today therefor I thought it was completely new. Next I will do a search! :cool:

quickstang
12-21-2006, 21:30
I'll be posting there so please don't ;)



I guess you need a certain amount of posts before....but how many?

Doe we have our own thread? And if so, what is the title?

neilyoung
12-21-2006, 21:35
I've downloaded Cake Mania with keygen from this forum but the key generated doesn't work. If anyone has a version of the game that doesn't need registration could you please post it. Thank you very much...

leave ur device name (HSID) btw it must be 4 chars or more to generate and ill get one

chingaling
12-21-2006, 21:41
And, as always, LET ME KNOW HOW IT WORKS FOR YOU! If something doesn't work, let me know. If it works great, let me know! Thanks in advance!)[/quote]

I installed palm finance genius. It`s great !!!! thanks!!!
But I don`t know if you know it that the currency calculator doesn`t seem to work well (even with the update database). Try 1$Us it will says 1 dollar canadian.

adambomb
12-21-2006, 21:43
I'll be posting there so please don't ;)



I guess you need a certain amount of posts before....but how many?
Man these bigdog patchers sure are egotistical;)How hard can it be:p

quickstang
12-21-2006, 21:45
Here's a 2Day KeyGen...

http://rapidshare.com/files/8412562/2day_keygen.zip

Apparently done by some french guy. Let us know if it works :D

Yes, that one works fine.

overkill_palm
12-21-2006, 21:50
Overkill, since you always do these, can you get this one for me? Really wish I could find a key gen for that one since they update it all the time.
Sry, did not see this...

Edit: Lol, I didn't see the keygen either^^

neilyoung
12-21-2006, 21:55
about getting a new board


I second that once again!!!! :D[/quote]

I don't know if the lair is the place to be but if someone wants to nominate themselves to negotiate with the mods there on behalf of the users here about access to the private forums with out the posting rule to accompany the individuals here it might work out... and someone clarify their disclaimer - if someone wants to take the lead then count me in ... over there i am joeydoa ... so if someone was to take a list of users and articulate what has been said here as far as needs and wants there is a possibility we may be accomodated (but they may have lost interest in hosting a forum)... if someone wants to lobby add me to their list. just some ideas... maybe theyll host a private topic for us. outside of that is the option of assimilation into another board(not to crazy about assimilation) or starting a new one as has been suggested

vizeta
12-21-2006, 22:14
Hi jennmicc :p

get multi user hack here

adambomb
12-21-2006, 23:04
Hi jennmicc :p

get multi user hack here
man how many times has this been posted now:rolleyes:

omaRR
12-21-2006, 23:06
haha... the active users at thelair right now include:

iamajd, overkill_palm, quickstang, & adambomb... and i noticed omaRR's acceptance of the agreement too...

so, is this our new home? i really liked the idea of making out own board. =o( we could have enforced "SEARCH OR DIE!" rules and stuff.

time to start getting my post counts up on the new forums i've joined lately... *sigh*

i rather have our own board as well, i signed up to the new board but i didnt like whole not being able to put up cracked, patched, keygens and all that junk. or is it maybe that they are just saying that as a front but what goes on behind the scenes is another story... theres a party store by my house that recently got busted for pushing serious amounts of weight after hours... if thats the case then im cool with the site i guess BUT i much rather have our own board... and im willing to put "caaaaaash moooneeeeey"

omaRR

jennmicc
12-21-2006, 23:40
Hey, sorry about not searching. I fell guilty to the trap and I had done such a good job until then.:( jennmicc

jennmicc
12-21-2006, 23:58
btw the following combo worked for Atari Retro :)


The Multi User Hack attached with this url:

Atari Retro 2....

http://rapidshare.com/files/7250636/Atari_Retro_2__Serial.zip

Enjoy!

Mhobbs2282
12-22-2006, 00:24
:) Hey guys I just wanted to let you guys know that if you go to the Smart Phones & PDA/PALM Organizers page, locate the palm appZ message board, on the right you will see little icons. One of them is attachments and if you click on it it will pull up a long list of the attachments. I think it is a comprehensive list, but not sure. You can also download from there!!!:)

fnt
12-22-2006, 00:49
If your talkin FTA:eek: I've got a viewsat thanks to the lack of support for the spacestar 500/700 Man you rock and your offer get's my vote 100%
I'm not down with bieng a sitting duck and privacy should be a factor thank you for your excelent offer WHO'S WITH US?It sounds like wheelie and iamajd are down and they already have my vote for BIGDOG MODERATORS:D Ring in your votes now and lets get this party started

You'll be pleased to know it is all FTA All The Time...Ariza To Viewsat with Buzz Dreambox and everything in between..There are many public forums but overall privacy is needed..havng your IP logged on a public site just tatoos your *** for the providers to hammer the public sites and track you down..Sort of a similar problem we could have here...Anything ya need just holler...

adambomb
12-22-2006, 00:55
You'll be pleased to know it is all FTA All The Time...Ariza To Viewsat with Buzz Dreambox and everything in between..There are many public forums but overall privacy is needed..havng your IP logged on a public site just tatoos your *** for the providers to hammer the public sites and track you down..Sort of a similar problem we could have here...Anything ya need just holler...
Rock on brother it's all hobby for me:D

quickstang
12-22-2006, 01:15
Rock on brother it's all hobby for me:D



So then what is our plan at the moment? I just don't seem to like the lair that well. Lets see if we can talk to the mods here and see if they will help us out. I'll send a message to each one.

Message sent to all 5 addressing our concern and what we would like, and how simple it is to change that. Hopefully I will get a response from one of them. Its an easy thing for one of them to do, and if it can be done, I am all about staying.

The biggest reason to leave is that it gets so cluttered with reply after reply and quote after quote cause we are asking 200 diferent things on one section and replying to all of them on the same section. Utter Chaos, and soon we just wont be able to keep up, and we will have to pull the plug here. If you miss one day, you have to scan all the pages to see what you've missed.

Miss a day else where, and you can see new THREADS posted which is so much easier. If there are 5 new pages here in one day and 5 new topics, that sucks.

5 new THREADS (topics) elsewhere and you will be able to see all of them right on the main page, and that is so much easier.

Its just we have so much going on here, keeping up the way they have it set-up is almost too much.

I stressed they need to set it up for us like treocentrals forum. Its a Vbulletin too, so IT CAN BE DONE.

Now we wait and see if we get a response.

------ Just got a response from Neo and he said he would talk to the other mods about my suggestions.

fnt
12-22-2006, 01:55
If I may..

There is a quick and easy solution...Seperate the forums...One for files...one for requests....and another for general chat...this way finding files is easier..requests can be made and the solutions posted in the files section with a quick link to them..That will unclutter each section and keep things in order.much easier to moderate as well.Another note...Rather than posting files directly off the board (Although convenient it is dangerous)Use a File sharing proggie..Oh speaking of which I host one of those also.... the only restriction is time..no download or upload limits...IF you look atthis thread from beginning to end there are more "Can You ..Is There..."Posts than file posts..we also have this this issue that we are speaking about now...again ... clutter where there shouldn't be.

wheeliestunt
12-22-2006, 02:03
i rather have our own board as well, i signed up to the new board but i didnt like whole not being able to put up cracked, patched, keygens and all that junk. or is it maybe that they are just saying that as a front but what goes on behind the scenes is another story... theres a party store by my house that recently got busted for pushing serious amounts of weight after hours... if thats the case then im cool with the site i guess BUT i much rather have our own board... and im willing to put "caaaaaash moooneeeeey"

omaRR

It's just the front. Once you're a full member you can access the good stuff...when is that?...I still don't know. But what I do know is than that makes that forum a place for people who knows where thy're going. No newbies asking the same over and over, but that doesn't make it good...I mean there won't be much comunity growing, a simple sticky would do for those people. If they ask something you can go "read the sticky" in stead of "search the 200 pages"....

man how many times has this been posted now:rolleyes:

That's why we need some changes around here...or wherever we go...

So then what is our plan at the moment? I just don't seem to like the lair that well. Lets see if we can talk to the mods here and see if they will help us out. I'll send a message to each one.

Message sent to all 5 addressing our concern and what we would like, and how simple it is to change that. Hopefully I will get a response from one of them. Its an easy thing for one of them to do, and if it can be done, I am all about staying.

The biggest reason to leave is that it gets so cluttered with reply after reply and quote after quote cause we are asking 200 diferent things on one section and replying to all of them on the same section. Utter Chaos, and soon we just wont be able to keep up, and we will have to pull the plug here. If you miss one day, you have to scan all the pages to see what you've missed.

Miss a day else where, and you can see new THREADS posted which is so much easier. If there are 5 new pages here in one day and 5 new topics, that sucks.

5 new THREADS (topics) elsewhere and you will be able to see all of them right on the main page, and that is so much easier.

Its just we have so much going on here, keeping up the way they have it set-up is almost too much.

I stressed they need to set it up for us like treocentrals forum. Its a Vbulletin too, so IT CAN BE DONE.

Now we wait and see if we get a response.

------ Just got a response from Neo and he said he would talk to the other mods about my suggestions.

I don't like that forum too much either (maybe it's just the colors ;) ) I don't know, I'd like it better if we get this place straight or another site of our own....I mean, were you're the boss, and not someone else you don't know :cool:

I know a hosting service with 400 MB HD and 40GB bandwidth per month for about $30 a year...anybody knows if thats enough to start a nice forum?Well, the HD is, I just don't know about the bandwidth....Think about the possibilities :D

wheeliestunt
12-22-2006, 02:04
If I may..

There is a quick and easy solution...Seperate the forums...One for files...one for requests....and another for general chat...this way finding files is easier..requests can be made and the solutions posted in the files section with a quick link to them..That will unclutter each section and keep things in order.much easier to moderate as well.Another note...Rather than posting files directly off the board (Although convenient it is dangerous)Use a File sharing proggie..Oh speaking of which I host one of those also.... the only restriction is time..no download or upload limits...IF you look atthis thread from beginning to end there are more "Can You ..Is There..."Posts than file posts..we also have this this issue that we are speaking about now...again ... clutter where there shouldn't be.

The main problem is that we don't have a moderator around here....;)

fnt
12-22-2006, 02:09
The main problem is that we don't have a moderator around here....;)

Understood ..but a mod is only neccessary when the forums get out of hand..get things under control by seperating and the forums should then moderate themselves..you have an administration that has CP access..the real moderation should surround file posting..and that can be controlled within the cp.Using the Moderate Attachments panel.The Prune Panel is also a wonderful tool.I don't know what version of vbulletin this is but the vb3.6 has some great new additions to it that can keep things from getting out of hand...

adambomb
12-22-2006, 03:06
Understood ..but a mod is only neccessary when the forums get out of hand..get things under control by seperating and the forums should then moderate themselves..you have an administration that has CP access..the real moderation should surround file posting..and that can be controlled within the cp.Using the Moderate Attachments panel.The Prune Panel is also a wonderful tool.I don't know what version of vbulletin this is but the vb3.6 has some great new additions to it that can keep things from getting out of hand...
The problem is that there is no lock on this forum its gonna be history in no time as far as all the downloads like someone mentioned earlier if you go to where it says palm appzand gamez theres a sticky of a paperclip (black very hard to see)and click on that its all there of course thanx to alot of newbe's like the one recently uploading muh over and over just to be a jerkoff there are several repeat downloads posted there but anyway this place is hot on the net and it's only gonna get hotter and the only reason i mention this(being one of the first here)is because i like this place and the people here and would like to build a legacy that will continue rather than be short lived;)

adambomb
12-22-2006, 03:08
I know a guy that owns a forum ill go talk to him they have a palm section with nothing there but they dont give a $hit about anything and im sure they would let us run the show ill keep you posted

adambomb
12-22-2006, 03:11
Nevermind thier gone???or they may be down right now i'll keep checking and see what i can come up with also the whole bandwidth thing for $30 sounds great can we lock the board for lets say 3 posts and you have to read the disclaimer rules ect I think if you lock it(but im not sure)it wont be strung out all over the net at least i havent seen any locked forums after makeing certain searches so that would in my opinion be the objective and then also every tom DICK and harry wouldnt be jerkin off the threads

fnt
12-22-2006, 03:12
I know a guy that owns a forum ill go talk to him they have a palm section with nothing there but they dont give a $hit about anything and im sure they would let us run the show ill keep you posted
At my Forum I have a palm(Phone) Section..I post what I want When I Want..Private servers have their advantages...adam Check your PM.

iamajd
12-22-2006, 03:21
Sorry, but since we're SOOOOO off topic these days, I have to add this otherwise useless post.

I am wondering if I am the only one actively using this forum that will admit that I *haven't* been here 'since the begining.' That phrase has been thrown around so much the last couple of days and I'm finding it increasingly humorous. I think I might just be in a rotten mood or something. :)

*in mysterious story-teller voice*
"A legend was born on 04-25-05 at 10:00 AM from a mysterious demi-g*d named HUBMOBILE.... who later disappeared to let his creation grow towards greatness, towards it destiny, whatever that may be.... some legends foretell the return of HUBMOBILE, some say he is still with us watching all the time, some yet say he has long ago perished..."

Its sorta Wraeththu-ish. *dork*

*no, uber-dork*

And on another rotten note... one somewhat overlooked reason we have a bazzillion pages is because some users feel the need to post multiple messages in rapid succession instead of using the EDIT button.

Not that I'm pointing fingers or anything. ;)

See, I told you I was in an off mood.

So read this post with a light heart and overlook any parts of it that you deem offensive.
Or be offended, but forgive me.

adambomb
12-22-2006, 03:40
Sorry, but since we're SOOOOO off topic these days, I have to add this otherwise useless post.

I am wondering if I am the only one actively using this forum that will admit that I *haven't* been here 'since the begining.' That phrase has been thrown around so much the last couple of days and I'm finding it increasingly humorous. I think I might just be in a rotten mood or something. :)

*in mysterious story-teller voice*
"A legend was born on 04-25-05 at 10:00 AM from a mysterious demi-g*d named HUBMOBILE.... who later disappeared to let his creation grow towards greatness, towards it destiny, whatever that may be.... some legends foretell the return of HUBMOBILE, some say he is still with us watching all the time, some yet say he has long ago perished..."

Its sorta Wraeththu-ish. *dork*

*no, uber-dork*

And on another rotten note... one somewhat overlooked reason we have a bazzillion pages is because some users feel the need to post multiple messages in rapid succession instead of using the EDIT button.

Not that I'm pointing fingers or anything. ;)

See, I told you I was in an off mood.

So read this post with a light heart and overlook any parts of it that you deem offensive.
Or be offended, but forgive me.From one dork to another LOL!
Anyway yes this is off topic but you can stick around here if you want but i think im down with FTN ,hey FTN show wheelie what you showed me and let him know your terms i hate to speak for him but he's the sniper around here and the brains as far as im a dj he's alright too
and if you want a list of guys to contact who are down then let me know since i've been here before the flock of seagulls i might just know who the winners are
And i am a dj dont worry this is the last highjack all others and you can pm me and we'll upgrade

fnt
12-22-2006, 03:47
From one dork to another LOL!
Anyway yes this is off topic but you can stick around here if you want but i think im down with FTN ,hey FTN show wheelie what you showed me and let him know your terms i hate to speak for him but he's the sniper around here and the brains as far as im a dj he's alright too
and if you want a list of guys to contact who are down then let me know since i've been here before the flock of seagulls i might just know who the winners are
And i am a dj dont worry this is the last highjack all others and you can pm me and we'll upgrade


Dude..your showing your age.. Flock Of Seaguls?!?!?!If I see the that Aircraft Carrier Flight Deck Hairdoo again......*** The horror....

Wheelie..check your PM...and adam Fire away...

iamajd
12-22-2006, 03:48
I don't like that forum too much either (maybe it's just the colors ;) ) I don't know, I'd like it better if we get this place straight or another site of our own....I mean, were you're the boss, and not someone else you don't know :cool:

I know a hosting service with 400 MB HD and 40GB bandwidth per month for about $30 a year...anybody knows if thats enough to start a nice forum?Well, the HD is, I just don't know about the bandwidth....Think about the possibilities :D


Seems reasonable. I honestly dont know how long it would take us to fill 400 MB. As long as old versions were delete when new versions were patched and what not, I think we could do it. I do think we'll outgrow it. My vision includes a lot of helpful information, how-tos & tutorials, etc, instead of just pa+ches and ser!als. But that's just me...

So, we have a host, there are free, good bulletin systems available, we have a good user base and people to act as trusted mods... besides a catchy name, what do we need?

As a Winter Solstice present to us, I will match every dollar raised for our liberation efforts up to 100$. (Hope it falls during a good month!!)

BlindDude
12-22-2006, 04:29
*in mysterious story-teller voice*
"A legend was born on 04-25-05 at 10:00 AM from a mysterious demi-g*d named HUBMOBILE.... who later disappeared to let his creation grow towards greatness, towards it destiny, whatever that may be.... some legends foretell the return of HUBMOBILE, some say he is still with us watching all the time, some yet say he has long ago perished..."

Hubmobile hath moveth on to ppc.

And on another rotten note... one somewhat overlooked reason we have a bazzillion pages is because some users feel the need to post multiple messages in rapid succession instead of using the EDIT button.

Not that I'm pointing fingers or anything. ;)

I am guilty of that one, but im not the only one.... lol





As a Winter Solstice present to us, I will match every dollar raised for our liberation efforts up to 100$. (Hope it falls during a good month!!)

Dayum you a rich man now? How much you get from that donate button? lol

gameteen
12-22-2006, 04:33
Seems reasonable. I honestly dont know how long it would take us to fill 400 MB. As long as old versions were delete when new versions were patched and what not, I think we could do it. I do think we'll outgrow it. My vision includes a lot of helpful information, how-tos & tutorials, etc, instead of just pa+ches and ser!als. But that's just me...

So, we have a host, there are free, good bulletin systems available, we have a good user base and people to act as trusted mods... besides a catchy name, what do we need?

As a Winter Solstice present to us, I will match every dollar raised for our liberation efforts up to 100$. (Hope it falls during a good month!!)

.................................................. .................................................. ..
Hi guys i really love your idea! i mean all of this is just crazy u dont even know whats what anymore..if u ever start that site up. u should have like a disscussion of a program or new programs to be cracked
and a folder where all the cracked stuff is with its describtion!
anyway if u ever do get it all set-up..please e-mail me guys in-case i miss it!game****_murder@yahoo.com (it!game****_murder@yahoo.com) thanks so much:) ;) :p !

adambomb
12-22-2006, 04:59
[QUOTE]And on another rotten note... one somewhat overlooked reason we have a bazzillion pages is because some users feel the need to post multiple messages in rapid succession instead of using the EDIT button.[QUOTE]
Hey my last post was 420! (but i dont do that anymore):cool:

rajkumarpc
12-22-2006, 04:59
only chatter mail 2 is available, could not find 3 hence the request


Search...



Search...



Search...



The keygen doesn't work in Pocket Tunes 4.x....

Here's the link to the program and serial I posted a few days back...

http://rapidshare.com/files/7631678/pTunes__Serial.zip



After just writing "search" three times in one post.....I really backup the idea of moving out somewhere else!!!

iamajd
12-22-2006, 05:01
From one dork to another LOL!

Glad I'm not the only one. :)

as far as im a dj he's alright too

And delving into further dorktum:
*in best Tim Curry voice* Okay? OKAY!?! I think we can do better than THAT! Now, Brad and Janet, what do you think of [me]?

Well... substitute the bombs use of 'alright' with 'okay' and it makes a little more sense.

The delerium is setting in early tonight.

And i am a dj dont worry this is the last highjack all others and you can pm me and we'll upgrade

Hope you didn't take that too hard :confused: , I was just pokin fun... still buds?? :(

Dayum you a rich man now? How much you get from that donate button? lol

LMAO... well, if you must know. Two people DID donate, although it was originally posted as a joke. And 75% of it came from one person who included their board username. I'm not sure which user posted the other (very appreciated) portion. Since it's still not enough to buy two Treos, it'll go toward our new home (with the permission of the donors). Well, unless of course I get enough for the Treos. :p

I dunno, I just feel really strongly for this community... I mean, just, what, less than THREE months ago, I knew nothing! I've been leeching off of the P2P community for most of my life and now I finally have a way to give back (albeit only to a small {probably dying} niche)... all thanks to the lessons I started learning here.

I'm certainly not rich but, as one important member here can tell you, I try to help those who've helped me. And if that means matching donations so we can get a new (more secure, better organized, moderated) home... so be it. Of course, you're assuming that we'd actually be able to raise 100$ for me to match. I'm hoping my offer to match will increase our funds!!

adambomb
12-22-2006, 05:10
Your a good dude iamajd ,I remember those digdug days
Wish I knew that much:(

wheeliestunt
12-22-2006, 05:31
Sorry, but since we're SOOOOO off topic these days, I have to add this otherwise useless post.


...So mine will be another off topic...

Nevermind thier gone???or they may be down right now i'll keep checking and see what i can come up with also the whole bandwidth thing for $30 sounds great can we lock the board for lets say 3 posts and you have to read the disclaimer rules ect I think if you lock it(but im not sure)it wont be strung out all over the net at least i havent seen any locked forums after makeing certain searches so that would in my opinion be the objective and then also every tom DICK and harry wouldnt be jerkin off the threads

Come on let's get this new home thing started and as I said, $30...Let's do it right away.....name...let's think of one....throw your options everybody!!!

Dude..your showing your age.. Flock Of Seaguls?!?!?!If I see the that Aircraft Carrier Flight Deck Hairdoo again......*** The horror....

Wheelie..check your PM...and adam Fire away...

I'm on it, thanks.... But I think we would need a nice palm related name...

Seems reasonable. I honestly dont know how long it would take us to fill 400 MB. As long as old versions were delete when new versions were patched and what not, I think we could do it. I do think we'll outgrow it. My vision includes a lot of helpful information, how-tos & tutorials, etc, instead of just pa+ches and ser!als. But that's just me...

So, we have a host, there are free, good bulletin systems available, we have a good user base and people to act as trusted mods... besides a catchy name, what do we need?

As a Winter Solstice present to us, I will match every dollar raised for our liberation efforts up to 100$. (Hope it falls during a good month!!)

iamajd, wow, what an offer... Tears are rolling down my eyes, I can't help it....WOW....

About the hosting space, well, we should not host files if we want to stay out of trouble (one of the reasons I don't do attachments, they go to rapidshare, let that be their problem). And it seems you just red my mind with that tutorials stuff.......Arrrgh, I'm gettind unpatient for the snowball to start rolling!!!!

wheeliestunt
12-22-2006, 05:37
All right, we're almost there....now for the names.....Here goes my first candidate:

th3palmz.com
th3palms.com (same thing but less warez-style)

What do you think?....keep 'em comming!!!

iamajd
12-22-2006, 05:51
portageek.net (portageek.com is taken)
damnit... mobileinfantry.com .org .net are taken too.

but mobile-infantry.net isn't.

and i have an (easily overcomable) preference for .net

palmtwo.com i know, so dumb... im just hoping my dumb ideas might inspire someone elses awesome, witty ideas....

quickstang
12-22-2006, 05:56
All right, we're almost there....now for the names.....Here goes my first candidate:

th3palmz.com
th3palms.com (same thing but less warez-style)

What do you think?....keep 'em comming!!!

Kind of a hard thing to think of. I'm sure anything will work. As long as the site is pretty :D Basically we
just need it to where it is readable. None of that stuff where you have to turn your monitor a certain way to read it. And organization is KEY.

Maybe.... www.inthepalmofyourhand.com hee hee

As long as we have the below is all I care about

Signatures
Mods
Stickies
Threads
Registration

The usual stuff.

On another note....

Install over any other one you have. Look, 2 topics in one. I could say I saved a tree, but that's more like saved an extra page. :)

skibum_nj
12-22-2006, 06:09
And, as always, LET ME KNOW HOW IT WORKS FOR YOU! If something doesn't work, let me know. If it works great, let me know! Thanks in advance!)

I installed palm finance genius. It`s great !!!! thanks!!!
But I don`t know if you know it that the currency calculator doesn`t seem to work well (even with the update database). Try 1$Us it will says 1 dollar canadian.[/quote]

Works fine on my Treo. I have the "Use live rates" checked and when I tap on the blue globe it gives me the echange rate and the date and time of the wireless update ($1 Us = $0.8662 CAD).

iamajd
12-22-2006, 06:22
palmprotectors.net

:D

skibum_nj
12-22-2006, 06:44
With the newer versions of Pocket Tunes, 4.0.0 and 4.0.1, I'm guessing that the company has released some type of blacklist for the universal key because