vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=5)
-   -   vbProArcade Beta 2 (https://vborg.vbsupport.ru/showthread.php?t=42880)

xxxsaint 12-17-2002 07:18 PM

I was able to get this action-script info out of the snake game :

Quote:


// Action script...

// [Action in Frame 1]
ifFrameLoaded(45)
{
gotoAndStop(4);
} // End of ifFrameLoad

// [Action in Frame 3]
gotoAndPlay(1);

// [Action in Frame 4]
score = 0;
stop();

// [Action in Frame 37]
Snake._visible = false;
score = 0;
tail = 1;
head = 3;
xv = 0;
yv = 1;
x = 160;
y = 100;
eaten = true;
extend = false;
makeMove = false;

// [Action in Frame 38]
x = x + 10 * xv;
y = y + 10 * yv;
head++;
duplicateMovieClip("Snake", head, 16384 + head);
setProperty(head, _x, x);
setProperty(head, _y, y);
if (eval("s_" + x + "_" + y) || x < 20 || x > 300 || y < 20 || y > 290)
{
gotoAndStop(43);
} // end if
eval("s_" + x + "_" + y) = true;
if (extend)
{
extend = false;
score = score + level;
}
else
{
eval("s_" + tail._x + "_" + tail._y) = false;
removeMovieClip(tail);
tail++;
} // end if
if (Food._x == x && Food._y == y)
{
eaten = true;
extend = true;
} // end if
if (eaten)
{
Sound.gotoAndPlay(2);
eaten = false;
tellTarget("Food")
{
_x = 10 * (random(28) + 2)
_y = 10 * (random(27) + 2)
} // end of tellTarget
} // end if
makeMove = false;

// [Action in Frame 39]
if (level == 3)
{
gotoAndPlay(38);
} // end if

// [Action in Frame 40]
if (level == 2)
{
gotoAndPlay(38);
} // end if

// [Action in Frame 41]
gotoAndPlay(38);

// [Action in Frame 43]
for (temp = head; tail < temp + 1; temp--)
{
setProperty(temp, _alpha, 33);
} // end of for
vpaver = "100B";
snakescore = score;
action = "gameover";
game = gamename;
score_loc = location + "/proarcade.php";
getURL(score_loc, "_self", "POST");

// [Action in Frame 44]
rank = 0;
Input._visible = false;
scoresURL = "snakescores.txt";
loadMovie(scoresURL, "Scores");
stop();

// [Action in Frame 45]
if (level == 3)
{
l = "p";
}
else if (level == 2)
{
l = "w";
}
else
{
l = "s";
} // end if
for (i = 1; i < 11; i++)
{
if (Scores["s" + l + i] < score)
{
rank = i;
i = 11;
} // end if
} // end of for
if (rank)
{
for (i = 9; i >= rank; i--)
{
Scores["s" + l + Number(i + 1)] = Scores["s" + l + i];
Scores["n" + l + Number(i + 1)] = Scores["n" + l + i];
} // end of for
Scores["s" + l + rank] = score;
Scores["n" + l + rank] = "";
tellTarget("Input")
{
_y = 20 * _root.rank + 59.500000
_x = 100 * _root.level - 45.500000
_visible = true
} // end of tellTarget
HS.gotoAndStop(3);
}
else
{
HS.gotoAndStop(2);
} // end if
stop();

now , being a flash rookie - is this enough info to be able to start adding our own games because I really want to add flash casino games in there , I've posted that all over these forums with no luck.

Da`Nacho 12-17-2002 08:16 PM

You can gleam the info from that...

quite bluntly the scores are sent like this:

url/proarcade.php?action=<actionname>&game=<gamename>& <scorevarname>=<scorevalue>

ie to give yourself 33,500 in tetris:

http://www.myforum.com/proarcade.php?action=gameover&game=tetris&tetrissc ore=33,500

From that you can see pretty much how the games are sending the score back to proarcade.php. I wouldn't be posting this except for the fact that I've had everyone putting in fake scores all day. :( I had one user who even told me he actually recompiled the breakout .swf and changed the breakoutscore = score; line to read a static value and the location variable to match the url to our forum, and then all he had to do was run it and presto.

There must be some way to prevent both of the above from happening. :(

theoneandonly 12-17-2002 09:37 PM

hey futureal, are you going to add any more games besides the 4 that u released?

xxxsaint 12-18-2002 12:06 AM

well , I have a slot machine .fla , and a poker machine .fla , how would I learn what to do to make those work out ?

xxxsaint 12-18-2002 01:15 AM

seeee , i'm psyched up about it
http://www.tdleague.com/forums/image...sbooksmall.gif

Automated 12-18-2002 02:32 PM

glad to see i could help! I dont know any flash so i look forward to seeing what you guys come up with.

Does anybody have a game we can add yet?

Thanks
Matthew

Automated 12-18-2002 02:34 PM

Quote:

Originally posted by xxxsaint
well , I have a slot machine .fla , and a poker machine .fla , how would I learn what to do to make those work out ?
download this program (http://www.buraks.com/asv/index.html) and then you will see how it all works but i think xxxsaint has covered it all!

Anybody had any luck?

TheSonic 12-18-2002 07:44 PM

Great hack.

After playing a game, i am redirected to the scoreboard, but Scores ARE NEVER added - all games are still at "0
(New Game!) " What can be wrong?

I dont see the "GameOver"-Screen - i just checked the templates - all are available. :(

Running 2.2.9

MAYDAY :D

BTW: Great hack!!

orca 12-18-2002 09:40 PM

Hmm a bit difficult to do a search in this big thread but I have a problem: After playing a game and the game's over I'll be directed to http://www.mysite.com/proarcade.php instead of http://www.mysite.com/forums/proarcade.php. Anyone now where I need to fix this?

stryka 12-20-2002 07:12 PM

I think everyone needs to show some patience...

I know we need to test this out but if you explain to your users that this is BETA and you have no control over future upgrades/releases.... then they might understand the delay etc...

but I am glad that so many ppl have installed this hack and is providing feedback...

and yes... i too can't wait for the next beta release... but it might take weeks, months or days...


All times are GMT. The time now is 02:07 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02396 seconds
  • Memory Usage 1,746KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete