Games in VNW - Forum

Forum Navigation
You need to log in to create posts and topics.

Games in VNW

I'm curious about what games have been made using VNW.  Any that might want to be shared in a pub file format.

I might be interested if they have a price tag as well.   Mostly looking for popular style games, tv type games, question games etc.

All age groups.

Thanks

Don

Hi @donbwalker,

 

Here are my games:

a) NeoZenku

http://neoespecialistas.rf.gd/Zenku.png

 

 

Source PUB code is available for sell

 

 

NeoChess

http://neoespecialistas.rf.gd/Chess.png

 

 

Easy to connect to 2 users via TCP / UDP

Source PUB code is available for sell

 

NeoPuzzle

http://neoespecialistas.rf.gd/Puzzle.png

 

 

3 levels of difficult: Easy (with grayscale image) intermediate  (parts outline) and hard (no help)

Source PUB code is available for sell

 

NeoPuzzle has an special plugin for convert images.

 

NeoCrossWord

http://neoespecialistas.rf.gd/NeoCrucigramas.png

 

 

NeoCrossWord is a very complex game. Has a Grid, a ListView and several external actions. PUB File available. Print & preview does not work because use a internet explorer webbrowser component.

Source PUB and plugins code is available for sell. Make sure you understand the limitations

 

Greetings from Buenos Aires,

David de Argentina

Uploaded files:
  • You need to login to have access to uploads.
Vadim and josevdr95 have reacted to this post.
Vadimjosevdr95

Hi David

 

Thanks for showing me the games.  I'd like to pursue a couple of them further.

Can you email me. bsctracqr@gmail.com

 

Thanks

T

Would you like play the Rubik's Cube?

This is a fully functional version of the game.

http://neoespecialistas.rf.gd/rubik.jpg

 

Download link (Android 4.4 +, English version):

http://neoespecialistas.rf.gd/rubiks_cube.zip

 

Enjoy!

David de Argentina

Uploaded files:
  • You need to login to have access to uploads.
Vadim and proforma.guyot have reacted to this post.
Vadimproforma.guyot

Last minute update:

The advertisement can be edited remotely through a PHP hosting.

In the example, the songbird from "Still loving you" is accessed remotely from my server.

It is likely that at some other time the advertisement will change.

 

;-)

The new version could be downloaded at:

 

http://neoespecialistas.rf.gd/rubiks_cube.zip

 

Replace the previous one with the new APK file

Enjoy!

 

 

I am currently working on developing teaching materials for schools.
With this code that they shared in the neo win forum, I was able to develop a memory game with images
I want to transfer it to neo web but I see that the syntax between the programs is different. Could you guide me on how I can solve those details?

SearchStr ".[ran]." "[Used]" "[s]" ""

StrParse "[Used]" "." "[p]" "[pn]"

 

@carlos-saldana VisualNEO Web has StrSearch and StrParse too:

StrSearch ".[ran]." "[Used]" [s]
StrParse "[Used]" "." [p]

Just note, StrParse will return an Array (VisualNEO Win does not have real Arrays).
Number of elements with the Array would be [p.length] or you can use ArrayLen action command.

Greetings to all, I'm trying to adapt to the syntax of Visual Web in relation to Visual Win I find differences in some commands and I want to ask if the behavior is normal this commuted in Visual Win

SetVar "[Name]" "11DPR2020C"
SearchStr "C" "[Name]" "[SpacePos]" ""

SpacePos = 10

in visual web

SetVar [Name] "11DPR2020C"
StrSearch "C" "[Name]" [SpacePos]

SpacePos = 9

Because the result is different

@carlos-saldana

The StrSearch command (VisualNEO Web; returns "-1" if not found) produces results starting the count at zero, not one like the SearchStr command (VisualNEO Win; returns "0" if not found).

@carlos-saldana VisualNEO Win starts counting at position 1 (first item = 1).
VisualNEO Web starts counting at position 0 (first item = 0). This is because it is how JavaScript works.