Jump to content

Motorola V525 (Games,Wallpapers,MP3,Themes)


ALTUS
 Κοινοποίηση

Recommended Posts

Παιδιά πάρτε ένα link μιας ΑΓΓΛΙΚΗΣ σελίδας που έχει όλα τα προγράμματα για motorola (PST, MPT ...) ωραία και τακτοποιημένα χωρίς registrations κλπ

 

http://www.siterocks.com/Default.aspx?tabid=29 Προγράμματα

 

http://www.siterocks.com/Default.aspx?tabid=28 Παιχνίδια

 

και έχει κι άλλο πράγμα.

 

Εγώ κατέβασα από εκεί το MPT 2 και λειτουργεί άψογα.

Xiaomi mi 9 lite
Link to comment
Share on other sites

  • Απαντήσεις 625
  • Δημιουργία
  • Τελευταία απάντηση

Top Posters In This Topic

Δημοφιλείς μέρες

Top Posters In This Topic

Αρχικό Μήνυμα από το μέλος ALTUS ( 1 Σεπ. 2004 , 08:38)

 

VRE PACOPOR EXO STEILEI TOSA LINKS KAI TA PIO POLLA EXOYN TO MPT KOITA TA!!!!

 

PAIDIA EXUES ANAKALYPSA POS YPARXEI TROPOS NA EXOYME STO KINHTO PARAPANO APO 30 JAVA PROGRAMMATA!!!

 

SYGKKRIMENA KATEBASA ENA JAR ARXEIO POY HTAN 3 PAIXNIDIA MAZI !!!! HTAN TO CM4, TO ALFONSO F1 KAI TO CRASHBANDICOT NITRO KART!!!!

 

DOYLEYOYN OLA KANONIKA... APLOS STO ARXEIO MANIFST ANAFEROYN TA TRIA .CLASS ARXEIA POY TREXEI TO KAUENA KSEXORISTA!!!

 

POLY KALO!!!!!!

 

 

 

Φιλε ALTUS

Ψαχνω να βρω λυση για το οριο των 30 Java games

Η λυση να εχω σε ενα jar παραπανω απο ενα την εχω ψαξει αλλα δεν.. Εσύ απο που κατέβασες το jar αρχειο που ειναι 3 games μαζι ;

HELP ...

 

THANKS

EVERYBODY WANTS TO RULE THE WORLD
Link to comment
Share on other sites

voila oi odhgies gia na ftiakseis 1 arheio me polla jar!!!

 

Jar files usually contains an only midlet, defined in the file META-INF/MANIFEST.MF inside the jar file this way:

 

MIDlet-1: MotoGP 2, /MotoGP2/gfx/icon.png, MotoGP2.MotoGP2

 

where "MotoGP 2" defines the midlet name, "/MotoGP2/gfx/icon.png" defines the icon, and "MotoGP2.MotoGP2" the main class of the jar file.

MIDlet-1 defines the number of order of the midlet in respect to the others in the jar file, so MIDlet-1 will be the first midlet, MIDlet-2 the second, etc.

The max number of midlets per jar in the vxxx is 3.

 

Let's suppose that we have 3 car games, carlos sainz, collin mcrae and outroad, and we want to have the 3 midlets in 1 with the name "car games".

- Create a new folder called "car games"

- Inside that folder, create a new folder called "sainz", other called "mcrae", other called "outroad", and other called "3in1"

- Extract the contents of each jar file in its respective folder.

- Copy everything from the sainz folder, but the META-INF folder, on the 3in1 folder.

- The same with mcrae and outroad folder

When copying outroad's content, you will get a "icons\ folder already exists...", simply copy the contents of the outroad\icons folder in the 3in1\icons folder.

- now move one of the META-INF folders from any game to the 3in1 folder, for example carlos sainz's META-INF folder.

- Edit the file 3in1\META-INF\MANIFEST.MF, with notepad for example, you will see this:

 

Manifest-Version: 1.0

MIDlet-Name: Carlos Sainz Rally

MIDlet-1: Carlos_Sainz, /icons/WRC_icon.png, Zigurat.Car2003.MainClass

MIDlet-Version: 1.0.0

MIDlet-Vendor: Gaelcomobile

MicroEdition-Configuration: CLDC-1.0

MicroEdition-Profile: MIDP-1.0

 

If you create the .jar file at this point, you will have a .jar file containing the 3 games, but you will only be able to execute carlos sainz, because its the one which is defined in the manifest file.

 

- Now you have to add the other 2 midlets to the manifest file, edit mcrae\META-INF\MANIFEST.MF, copy the line that defines the midlet:

 

MIDlet-1: colin mcrae rally 4, /icon.png, Main

 

and add it to the manifest file at 3in1\META-INF, which will look like this

 

Manifest-Version: 1.0

MIDlet-Name: Carlos Sainz Rally

MIDlet-1: Carlos_Sainz, /icons/WRC_icon.png, Zigurat.Car2003.MainClass

MIDlet-1: colin mcrae rally 4, /icon.png, Main

MIDlet-Version: 1.0.0

MIDlet-Vendor: Gaelcomobile

MicroEdition-Configuration: CLDC-1.0

MicroEdition-Profile: MIDP-1.0

 

- And do the same with outroad, edit outroad\META-INF\MANIFEST.MF, copy the midlet's line, and add it to the manifest file at 3in1\META-INF

 

Manifest-Version: 1.0

MIDlet-Name: Carlos Sainz Rally

MIDlet-1: Carlos_Sainz, /icons/WRC_icon.png, Zigurat.Car2003.MainClass

MIDlet-1: colin mcrae rally 4, /icon.png, Main

MIDlet-1: OutRoad, /icons/icon.png, OutRoad.MainPRG

MIDlet-Version: 1.0.0

MIDlet-Vendor: Gaelcomobile

MicroEdition-Configuration: CLDC-1.0

MicroEdition-Profile: MIDP-1.0

 

- And now just modify the final MANIFEST.MF, the one at 3in1\META-INF, set the midlet's order as you like, and the suite name. It should looks like this:

 

Manifest-Version: 1.0

MIDlet-Name: Car games

MIDlet-1: Carlos_Sainz, /icons/WRC_icon.png, Zigurat.Car2003.MainClass

MIDlet-2: colin mcrae rally 4, /icon.png, Main

MIDlet-3: OutRoad, /icons/icon.png, OutRoad.MainPRG

MIDlet-Version: 1.0.0

MIDlet-Vendor: Gaelcomobile

MicroEdition-Configuration: CLDC-1.0

MicroEdition-Profile: MIDP-1.0

 

- Last, create the jar file, here goes the classic way:

· open an msdos window

· change the directory to "car games" wherever you created it.

· move the META-INF folder from the "car games\3in1\" folder, to "car games\"

· and create the jar file this way:

C:\car games\> jar cvfm cargames.jar META-INF\MANIFEST.MF -C 3in1 . <------ the dot is also part of the command

· and upload cargames.jar to the phone, and test that all works correctly.

 

LIMITATIONS:

· the vxxx only supports 3 midlets per jar.

· If two of the games have a .class file with the same name, this won't work.

Xiaomi mi5 high
Link to comment
Share on other sites

Ρε παιδιά ψάχνω κάπου να βρω ένα FIFA2004 που να παίζει καλά στιο V525 μας. Έχει κανείς κάποιο σίγουρο link ?
Xiaomi mi 9 lite
Link to comment
Share on other sites

re paidia oti efarmogh metatrepw me to jadgen kai thn pernaw me to midway mou bgazei sfalma........enw otan katebazw kapoio jad exarxhs xwris na xreiazetai na to perasw apo to jadgen douleuei kanonikotata.Ti na ftaei?
Link to comment
Share on other sites

Για την ευκολία μας, επιδη είναι πολλά τα προβλήματα με BT και και USB Cable δημιούργησα ενα WAP site για απ'ευθείας κατέβασμα παιχνιδιών (και συντομα ringtones) απο το κινητό μέσω WAP.

 

Για περισσότερες πληροφορίες δείτε το παρακατω thread:

http://www.myphone.gr/forum/showthread.php?threadid=41370

 

περιμένω προτάσεις.

Link to comment
Share on other sites

Παιδιά γινόταν πολύς λόγος για game emulator αν κάποιος ενδιαφέρεται στη σελίδα http://www.motofiles.tk/ υπάρχουν 2 emulators εκ των οποίων δοκίμασα το ένα και λειτουργεί μια χαρά (προς το παρόν). Μάλιστα βγάζει interface του κινητού και βλέπεις το παιχνίδι στη "οθόνη". Εκτός από αυτά έχει και πολλά άλλα για Vxxx (games, aplications κλπ). αλλά πρώτασ θέλει ένα σύντομο registration (και ενεργοποίηση των cookies για τη σελίδα, υπάρχουν οδηγίες).
Xiaomi mi 9 lite
Link to comment
Share on other sites

Παιδιά καλησπέρα.

Πήρα πριν ένα μήνα το V525 και είμαι υπερευχαριστημένος.

Πήρα όμως πριν 2 ημέρες το bluetooth MA-700, που πουλάει η Voda εγκατέστησα το Moblie Phone Tools και φυσικά είδα ότι μόνο pictures και audio μεταφέρει.

Διάβασα μετά τα posts σας, κατέβασα το widcomm που δίνεται σαν link το (1.4.2, αν θυμάμαι καλά), το εγκατέστησα πριν λίγο αλλά κάποια στιγμή λίγο πριν τελειώσει το installation, μου λέει ότι δεν βρίσκει την Bluetooth Device.Προσπάθησα σε όλες τις θύρες με ανοιχτή την ανίχνευση του κινητού, αλλά συνέχεια μου λέει ότι δεν την βρίσκει.Αναγκάστηκα να πατήσω Cancel χωρίς να βρει την συσκευή και όταν τελείωσε η εγκατάσταση μου λέει στο bluetooth places, ότι δεν βρίσκει την Bluetooth Device.

Μπορείτε, σας παρακαλώ, να μου πείτε τι δεν κάνω καλά;

Έχω windows xp, αλλά δεν νομίζω να είναι αυτό το πρόβλημα γιατί το Mobile Phone Tools, βλέπει κανονικά την συσκευή.

Τι μπορεί να φταίει;

Α, και στην αρχή του installation, ενώ κατέβασα την version που δίνετε, μου εμφανίζει ένα παράθυρο ότι δεν υπάρχουν drivers αναγνωρισμένοι από τα Windows και κάτι τέτοιο.

Please help...

Ευχαριστώ εκ των προτέρων.

Ο επιμένων νικά...
Link to comment
Share on other sites

na rotiso kati?pairnei to v525 .sis arxeia?pleasae answer!

oxi ta sis einai mono gia symbian

 

Παιδιά καλησπέρα.

Πήρα πριν ένα μήνα το V525 και είμαι υπερευχαριστημένος.

Πήρα όμως πριν 2 ημέρες το bluetooth MA-700, που πουλάει η Voda εγκατέστησα το Moblie Phone Tools και φυσικά είδα ότι μόνο pictures και audio μεταφέρει.

Διάβασα μετά τα posts σας, κατέβασα το widcomm που δίνεται σαν link το (1.4.2, αν θυμάμαι καλά), το εγκατέστησα πριν λίγο αλλά κάποια στιγμή λίγο πριν τελειώσει το installation, μου λέει ότι δεν βρίσκει την Bluetooth Device.Προσπάθησα σε όλες τις θύρες με ανοιχτή την ανίχνευση του κινητού, αλλά συνέχεια μου λέει ότι δεν την βρίσκει.Αναγκάστηκα να πατήσω Cancel χωρίς να βρει την συσκευή και όταν τελείωσε η εγκατάσταση μου λέει στο bluetooth places, ότι δεν βρίσκει την Bluetooth Device.

Μπορείτε, σας παρακαλώ, να μου πείτε τι δεν κάνω καλά;

Έχω windows xp, αλλά δεν νομίζω να είναι αυτό το πρόβλημα γιατί το Mobile Phone Tools, βλέπει κανονικά την συσκευή.

Τι μπορεί να φταίει;

Α, και στην αρχή του installation, ενώ κατέβασα την version που δίνετε, μου εμφανίζει ένα παράθυρο ότι δεν υπάρχουν drivers αναγνωρισμένοι από τα Windows και κάτι τέτοιο.

Please help...

Ευχαριστώ εκ των προτέρων.

 

Catantona to BT ths motorola de douleyei me widcomm mono me to diko toy software, pragma poy to kathista axrhsto!

Link to comment
Share on other sites

Gousgouni, διάβασε το post μου σε άλλο θέμα για BT και θα δεις ότι υπάρχει λύση απλά χρειάζεται να πληρώσω...
Ο επιμένων νικά...
Link to comment
Share on other sites

ρε παιδιά κανένα καλό bubble bobble που να παίζει σωστά στο V525 μήπως υπάρχει. Αυτό που έχω είναι προβληματικό στην κίνηση κλπ.
Xiaomi mi 9 lite
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Επισκέπτης
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Κοινοποίηση


×
×
  • Create New...