|
|||||||
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
![]() Release date (v.2.0): 30 March 2011 Release date (v.2.1): 01 April 2011 Release date (v.2.1.1): 06 April 2011 What's new:
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] Last edited by alexvilla; 04-05-2011 at 04:39 PM. Reason: version 2.1.1 |
|
|
|||
|
|
|
#2
|
||||
|
||||
|
Is this your game? Because your site is filled with all the games from this forum, you just added your website to every game folder name and password protected all the archives.. why? I think it's bit weird to put your own website all over other people's apps and don't even link back to the actual makers.
So where do you got this one from? If you want something to blink, you just have to redraw it a few times.
__________________
this is a link to my personal homepage which I haven't |
|
#3
|
||||
|
||||
|
As i was looking through your site i found skifree. I appreciate that you are sharing it but next time please ask me first. And why did you password my zip file????????? and one other thing, there is no mention of me in there expet for a screen shot where i put my name in. You need to at least give credit to the developers.
As for random question: use t = os.date('*t') math.randomseed(os.time(t)); to create a more random effect and use num= math.random(1,#questions)--or whatever text = questions[num].text -- or something similiar
__________________
Tools: Playlist Manager , Document to RSS , Notepad++ Instellisense Games/Apps: Asteroids, ZenFrame, Graphing Calculator, Pingus X-Fi2, Boxwars, SkiFree, Jezzball |
|
#4
|
||||
|
||||
|
1. Ok, sorry, I will change everything soon
2. It's my game 3. Thank you
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] Last edited by alexvilla; 01-09-2011 at 08:16 AM. |
|
#5
|
||||
|
||||
|
Nice game :>
__________________
Zen X-Fi2 Apps: Notee-fi (notepad) | TicTacToe | Mahjongg http://www.starfare.eu/ - a free real-time strategy game. |
|
#6
|
||||
|
||||
|
beta version available for testing! see an attachments in 1st post
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#7
|
||||
|
||||
|
Quote:
__________________
Tools: Playlist Manager , Document to RSS , Notepad++ Instellisense Games/Apps: Asteroids, ZenFrame, Graphing Calculator, Pingus X-Fi2, Boxwars, SkiFree, Jezzball |
|
#8
|
||||
|
||||
|
How to fix the bug? If I don't touch screen about 5 minutes, player is frozen!
Because of what it can be? What I need to put in the code?
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#9
|
||||
|
||||
|
It's the player trying to automatically shut off since you haven't used it. In this it sends button.click() events to the que and hopes the app will close via that command. If it doesn't, the app freezes.
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#10
|
||||
|
||||
|
so how to help to player automatically shut off? I don't understand you
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#11
|
||||
|
||||
|
Just make sure that the game is exited by pressing the "home" button.
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#12
|
||||
|
||||
|
fuuu.. only "home" button? how about "power" button?
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#13
|
||||
|
||||
|
now you can download and play
(only russian language)
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#14
|
||||
|
||||
|
Oh You have added a copyright - thanks..
And the game is really nice! |
|
#15
|
||||
|
||||
|
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#16
|
||||
|
||||
|
Whoa looks awesome, great work for sure, can't wait to try it myself!
|
|
#17
|
||||
|
||||
|
Need help!
How to make automatic line folding? Now: Code:
text.draw(0, 90, "In terms of size,","center"); text.draw(0, 110, "what is the largest","center"); text.draw(0, 130, "U.S. State?","center"); Code:
q=In terms of size, what is the largest U.S. State? if q>? then text.draw(0, 90, ?,"center"); end; if q>? then text.draw(0, 110, ?,"center"); end; if q>? then text.draw(0, 130, ?,"center"); end;
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#18
|
||||
|
||||
|
Here you go
![]() Code:
q = "In terms of size, what is the largest U.S. State?"
maxchar = 30 -- max number of characters on one line - Change to fit your window
q_lineEnd = maxchar
q_lineStart = 1
for i=1, math.ceil(string.len(q)/maxchar) + 1 do
while string.sub(q,q_lineEnd,q_lineEnd) ~= " " and string.sub(q,q_lineEnd,q_lineEnd) ~= "" do -- look for a space to cut the lines
q_lineEnd = q_lineEnd - 1
end
text.draw(0, 70 + (20*i), string.sub(q,q_lineStart,q_lineEnd),"center")
q_lineStart = q_lineEnd + 1
q_lineEnd = q_lineStart + maxchar
end
__________________
this is a link to my personal homepage which I haven't |
|
#19
|
||||
|
||||
|
Brett_val, Thanks a lot!
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] |
|
#20
|
||||
|
||||
|
Need help with questions and answers for the game.
If somebody can/want, send me PM, please
__________________
Snake [Ru/Eng] | Who Wants to Be a Millionaire? [Ru/Eng] | Pacman [Ru] | BrainStorm [Ru/Eng] Last edited by alexvilla; 03-27-2011 at 05:42 AM. |
![]() |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 05:04 AM.












What size should be a file that it will play?
Linear Mode
