이 게임을 그누 포인트와 연계시킬수 없을까요? ^^;; > 자유게시판

자유게시판

이 게임을 그누 포인트와 연계시킬수 없을까요? ^^;; 정보

기타 이 게임을 그누 포인트와 연계시킬수 없을까요? ^^;;

본문

이 게임을 조금 해 보다 문득 느낀점
일전에 zzzz님이 공개하신 돌려돌려를 보고 삘을 확 받았는데요.
이 게임을 그누 포인트와 연계 시킬 수 없을까요?
되기만 한다면 대박감 인데....
그래서 디컴파일러 프로그램으로 소스를 분석해 봤는데 개쀍 아는게 있어야지요.ㅡ.ㅡㅋ
그래서 일단 소스만 한번 올려 봅니다.

//프레임 1
fscommand("showmenu", "false");

//프레임 2
ifFrameLoaded(630)
{
    gotoAndPlay(5);
} // End of ifFrameLoaded

//프레임 3
gotoAndPlay(2);

//프레임 11
/:reel1values = "6x2A9xBF4BA7x98ABA5x789453B7A19B5F863x79A57x86B18xA246BxF96x2";
/:reel2values = "87A6B9x27x9AB2A5w4A894Bx67A56xF7B3x89w1B95A8x34B8A7Bx563B287A";
/:reel3values = "26BA787AB9x29xAB45w4A79BF68x63BA751AB938Aw85x9Bx57Fx48657x26B";
/:reel4values = "49xAB672xA7A8B5x92x7AB48639Bx6F9AB571B8A5387x4w8B9x5A6417F49x";
/:reel5values = "89A2x9BF7x62BA7Bw47A6x48B596x731x8AA8B53A96x84BB595Ax713689A";
/:totalreelsymbols = "58";
/:bet = "0";
totalbet = "0";
/:linesplayed = "0";
/:credits = "0";
win1x3 = "200";
win1x4 = "500";
win1x5 = "1000";
win2x3 = "125";
win2x4 = "200";
win2x5 = "500";
win3x3 = "90";
win3x4 = "150";
win3x5 = "300";
win4x3 = "75";
win4x4 = "100";
win4x5 = "250";
win5x3 = "50";
win5x4 = "90";
win5x5 = "150";
win6x3 = "50";
win6x4 = "90";
win6x5 = "150";
win7x2 = "20";
win7x3 = "40";
win7x4 = "60";
win7x5 = "100";
win8x2 = "15";
win8x3 = "30";
win8x4 = "50";
win8x5 = "90";
win9x2 = "10";
win9x3 = "20";
win9x4 = "40";
win9x5 = "80";
win10x2 = "6";
win10x3 = "10";
win10x4 = "20";
win10x5 = "50";
win11x2 = "6";
win11x3 = "10";
win11x4 = "20";
win11x5 = "50";
win12x2 = "6";
win12x3 = "10";
win12x4 = "20";
win12x5 = "50";
winFx2 = "5";
winFx3 = "20";
winFx4 = "50";
winFx5 = "100";

//프레임 20
/:reelvariance = "5";
/:slowspin = "3";

//프레임 30
b1 = "0";
b2 = "0";
b3 = "0";
b4 = "0";
b5 = "1";
loop = "1";
while (loop < 5)
{
    new = random("5") + 1;
    if (new != b1 && new != b2 && new != b3 && new != b4 && new != b5)
    {
        eval("b" + loop) = new;
        loop = loop + 1;
        continue;
    } // end if
} // end while
reel1end = "";
reel2end = "";
reel3end = "";
reel4end = "";
reel5end = "";
/:reel1stop = "7";
/:reel2stop = "30";
/:reel3stop = "24";
/:reel4stop = "30";
/:reel5stop = "7";
spin = "1";

//프레임 34
if (spin == 6)
{
    gotoAndPlay(81);
}
else
{
    if (eval("b" + spin) == 1)
    {
        gotoAndPlay(38);
    } // end if
    if (eval("b" + spin) == 2)
    {
        gotoAndPlay(48);
    } // end if
    if (eval("b" + spin) == 3)
    {
        gotoAndPlay(57);
    } // end if
    if (eval("b" + spin) == 4)
    {
        gotoAndPlay(65);
    } // end if
    if (eval("b" + spin) == 5)
    {
        gotoAndPlay(73);
    } // end if
} // end if

//프레임 35
stop();

//프레임 38
tellTarget("/reel1")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 42
if (/:reel1end == "done")
{
    spin = spin + 1;
    gotoAndPlay(34);
} // end if

//프레임 44
gotoAndPlay(42);

//프레임 48
tellTarget("/reel2")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 51
if (/:reel2end == "done")
{
    spin = spin + 1;
    gotoAndPlay(34);
} // end if

//프레임 53
gotoAndPlay(51);

//프레임 57
tellTarget("/reel3")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 60
if (/:reel3end == "done")
{
    spin = spin + 1;
    gotoAndPlay(34);
} // end if

//프레임 62
gotoAndPlay(60);

//프레임 65
tellTarget("/reel4")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 68
if (/:reel4end == "done")
{
    spin = spin + 1;
    gotoAndPlay(34);
} // end if

//프레임 70
gotoAndPlay(68);

//프레임 73
tellTarget("/reel5")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 76
if (/:reel5end == "done")
{
    spin = spin + 1;
    gotoAndPlay(34);
} // end if

//프레임 78
gotoAndPlay(76);

//프레임 123
/:reelvariance = "8";
/:slowspin = "2";
/:bet = "0";
totalbet = "0";
/:linesplayed = "1";
/:credits = "500";
/:spinsremaining = "0";

//프레임 130
stop();

//프레임 140
for (loop = "1"; loop < 8; loop = loop + 1)
{
    tellTarget("/line" + loop)
    {
        gotoAndStop(1);
    } // End of TellTarget
} // end of for
/:credits = /:credits - /:bet * /:linesplayed;
/:totalwin = "0";
/:totalwinnings = "0";
call("stopreels");
b1 = "0";
b2 = "0";
b3 = "0";
b4 = "0";
b5 = "1";
loop = "1";
while (loop < 5)
{
    new = random("5") + 1;
    if (new != b1 && new != b2 && new != b3 && new != b4 && new != b5)
    {
        eval("b" + loop) = new;
        loop = loop + 1;
        continue;
    } // end if
} // end while
spin = "1";
reel1end = "";
reel2end = "";
reel3end = "";
reel4end = "";
reel5end = "";
call("rndreel");

//프레임 154
if (spin == 6)
{
    gotoAndPlay(224);
}
else
{
    if (eval("b" + spin) == 1)
    {
        gotoAndPlay(161);
    } // end if
    if (eval("b" + spin) == 2)
    {
        gotoAndPlay(175);
    } // end if
    if (eval("b" + spin) == 3)
    {
        gotoAndPlay(186);
    } // end if
    if (eval("b" + spin) == 4)
    {
        gotoAndPlay(199);
    } // end if
    if (eval("b" + spin) == 5)
    {
        gotoAndPlay(212);
    } // end if
} // end if

//프레임 161
tellTarget("/reel1")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 167
play();
if (/:reel1end == "done")
{
    spin = spin + 1;
    gotoAndPlay(153);
} // end if

//프레임 169
gotoAndPlay(167);

//프레임 175
tellTarget("/reel2")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 178
play();
if (/:reel2end == "done")
{
    spin = spin + 1;
    gotoAndPlay(153);
} // end if

//프레임 180
gotoAndPlay(178);

//프레임 186
tellTarget("/reel3")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 189
play();
if (/:reel3end == "done")
{
    spin = spin + 1;
    gotoAndPlay(153);
} // end if

//프레임 191
gotoAndPlay(189);

//프레임 199
tellTarget("/reel4")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 202
play();
if (/:reel4end == "done")
{
    spin = spin + 1;
    gotoAndPlay(153);
} // end if

//프레임 204
gotoAndPlay(202);

//프레임 212
tellTarget("/reel5")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 215
play();
if (/:reel5end == "done")
{
    spin = spin + 1;
    gotoAndPlay(153);
} // end if

//프레임 217
gotoAndPlay(215);

//프레임 224
r11 = substring(/:reel1values, /:reel1stop + 2, "1");
r12 = substring(/:reel1values, /:reel1stop + 1, "1");
r13 = substring(/:reel1values, /:reel1stop, "1");
r21 = substring(/:reel2values, /:reel2stop + 2, "1");
r22 = substring(/:reel2values, /:reel2stop + 1, "1");
r23 = substring(/:reel2values, /:reel2stop, "1");
r31 = substring(/:reel3values, /:reel3stop + 2, "1");
r32 = substring(/:reel3values, /:reel3stop + 1, "1");
r33 = substring(/:reel3values, /:reel3stop, "1");
r41 = substring(/:reel4values, /:reel4stop + 2, "1");
r42 = substring(/:reel4values, /:reel4stop + 1, "1");
r43 = substring(/:reel4values, /:reel4stop, "1");
r51 = substring(/:reel5values, /:reel5stop + 2, "1");
r52 = substring(/:reel5values, /:reel5stop + 1, "1");
r53 = substring(/:reel5values, /:reel5stop, "1");

//프레임 225
for (loop = "11"; loop < 60; loop = loop + 1)
{
    if (eval("/:r" + loop) == "x")
    {
        eval("/:r" + loop) = "10";
    } // end if
    if (eval("/:r" + loop) == "A")
    {
        eval("/:r" + loop) = "11";
    } // end if
    if (eval("/:r" + loop) == "B")
    {
        eval("/:r" + loop) = "12";
    } // end if
} // end of for

//프레임 226
win1 = "0";
win2 = "0";
win3 = "0";
win4 = "0";
win5 = "0";
/:line1win = "0";
/:line2win = "0";
/:line3win = "0";
/:line4win = "0";
/:line5win = "0";
/:line6win = "0";
/:line7win = "0";
if (linesplayed == 1)
{
    call("line1check");
} // end if
if (linesplayed == 2)
{
    call("line1check");
    call("line2check");
} // end if
if (linesplayed == 3)
{
    call("line1check");
    call("line2check");
    call("line3check");
} // end if
if (linesplayed == 4)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
} // end if
if (linesplayed == 5)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
    call("line5check");
} // end if
if (linesplayed == 6)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
    call("line5check");
    call("line6check");
} // end if
if (linesplayed == 7)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
    call("line5check");
    call("line6check");
    call("line7check");
} // end if

//프레임 233
call("scattercheck");
/:totalwin = (win1 + win2 + win3 + win4 + win5 + win6 + win7) * /:bet + /:scatterprize;
/:credits = /:credits + /:totalwin;
if (/:totalwin > 0)
{
    /:totalwinnings = "0";
    tellTarget("/wincounter")
    {
        gotoAndPlay(5);
    } // End of TellTarget
} // end if
call("winsound");
if (/:scatterwin == "yes")
{
    gotoAndPlay(272);
}
else if (/:credits == 0)
{
    gotoAndPlay(255);
}
else
{
    tellTarget("/linesreset")
    {
        gotoAndPlay(10);
    } // End of TellTarget
    tellTarget("/betreset")
    {
        gotoAndPlay(5);
    } // End of TellTarget
    gotoAndPlay(130);
} // end if

//프레임 243
/:scatters = "0";
/:scatterprize = "0";
/:scatterwin = "";
for (loop = "11"; loop < 54; loop = loop + 1)
{
    if (eval("/:r" + loop) == "F")
    {
        /:scatters = /:scatters + 1;
    } // end if
} // end of for
if (/:scatters == 2)
{
    /:scatterwin = "yes";
    /:spinsremaining = "3";
    /:scatterprize = /:winFx2 * /:bet;
} // end if
if (/:scatters == 3)
{
    /:scatterwin = "yes";
    /:spinsremaining = "6";
    /:scatterprize = /:winFx3 * /:bet;
} // end if
if (/:scatters == 4)
{
    /:scatterwin = "yes";
    /:spinsremaining = "10";
    /:scatterprize = /:winFx4 * /:bet;
} // end if
if (/:scatters == 5)
{
    /:scatterwin = "yes";
    /:spinsremaining = "15";
    /:scatterprize = /:winFx5 * /:bet;
} // end if

//프레임 255
stop();

//프레임 272
for (loop = "11"; loop < 54; loop = loop + 1)
{
    if (eval("/:r" + loop) == "F")
    {
        tellTarget("/s" + loop)
        {
            gotoAndPlay(random("10") + 6);
        } // End of TellTarget
    } // end if
} // end of for

//프레임 343
stop();

//프레임 345
for (loop = "11"; loop < 54; loop = loop + 1)
{
    if (eval("/:r" + loop) == "F")
    {
        tellTarget("/s" + loop)
        {
            gotoAndPlay(random("10") + 6);
        } // End of TellTarget
    } // end if
} // end of for
stop();

//프레임 356
reel1end = "";
reel2end = "";
reel3end = "";
reel4end = "";
reel5end = "";
for (loop = "1"; loop < 8; loop = loop + 1)
{
    tellTarget("/line" + loop)
    {
        gotoAndStop(1);
    } // End of TellTarget
} // end of for
call("rndreel");
call("stopreels");

//프레임 371
tellTarget("/reel1")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 374
if (/:reel1end == "done")
{
    gotoAndPlay(382);
} // end if

//프레임 375
gotoAndPlay(374);

//프레임 382
tellTarget("/reel2")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 385
if (/:reel2end == "done")
{
    gotoAndPlay(393);
} // end if

//프레임 386
gotoAndPlay(385);

//프레임 393
tellTarget("/reel3")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 396
if (/:reel3end == "done")
{
    gotoAndPlay(403);
} // end if

//프레임 397
gotoAndPlay(396);

//프레임 403
tellTarget("/reel4")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 406
if (/:reel4end == "done")
{
    gotoAndPlay(414);
} // end if

//프레임 407
gotoAndPlay(406);

//프레임 414
tellTarget("/reel5")
{
    gotoAndPlay(5);
} // End of TellTarget

//프레임 417
if (/:reel5end == "done")
{
    gotoAndPlay(499);
} // end if

//프레임 418
gotoAndPlay(417);

//프레임 426
reel1end = "";
reel2end = "";
reel3end = "";
reel4end = "";
reel5end = "";
reel1win = "0";
reel2win = "0";
reel3win = "0";
reel4win = "0";
reel5win = "0";
stop();

//프레임 435
for (loop = "1"; loop < 8; loop = loop + 1)
{
    tellTarget("/line" + loop)
    {
        gotoAndStop(1);
    } // End of TellTarget
} // end of for

//프레임 458
if (f == 1)
{
    tellTarget("/reel1")
    {
        gotoAndPlay(5);
    } // End of TellTarget
    gotoAndPlay(464);
} // end if
if (f == 2)
{
    tellTarget("/reel2")
    {
        gotoAndPlay(5);
    } // End of TellTarget
    gotoAndPlay(471);
} // end if
if (f == 3)
{
    tellTarget("/reel3")
    {
        gotoAndPlay(5);
    } // End of TellTarget
    gotoAndPlay(478);
} // end if
if (f == 4)
{
    tellTarget("/reel4")
    {
        gotoAndPlay(5);
    } // End of TellTarget
    gotoAndPlay(485);
} // end if
if (f == 5)
{
    tellTarget("/reel5")
    {
        gotoAndPlay(5);
    } // End of TellTarget
    gotoAndPlay(492);
} // end if

//프레임 464
if (/:reel1end == "done")
{
    gotoAndPlay(499);
} // end if

//프레임 465
gotoAndPlay(464);

//프레임 471
if (/:reel2end == "done")
{
    gotoAndPlay(499);
} // end if

//프레임 472
gotoAndPlay(471);

//프레임 478
if (/:reel3end == "done")
{
    gotoAndPlay(499);
} // end if

//프레임 479
gotoAndPlay(478);

//프레임 485
if (/:reel4end == "done")
{
    gotoAndPlay(499);
} // end if

//프레임 486
gotoAndPlay(485);

//프레임 492
if (/:reel5end == "done")
{
    gotoAndPlay(499);
} // end if

//프레임 493
gotoAndPlay(492);

//프레임 499
r11 = substring(/:reel1values, /:reel1stop + 2, "1");
r12 = substring(/:reel1values, /:reel1stop + 1, "1");
r13 = substring(/:reel1values, /:reel1stop, "1");
r21 = substring(/:reel2values, /:reel2stop + 2, "1");
r22 = substring(/:reel2values, /:reel2stop + 1, "1");
r23 = substring(/:reel2values, /:reel2stop, "1");
r31 = substring(/:reel3values, /:reel3stop + 2, "1");
r32 = substring(/:reel3values, /:reel3stop + 1, "1");
r33 = substring(/:reel3values, /:reel3stop, "1");
r41 = substring(/:reel4values, /:reel4stop + 2, "1");
r42 = substring(/:reel4values, /:reel4stop + 1, "1");
r43 = substring(/:reel4values, /:reel4stop, "1");
r51 = substring(/:reel5values, /:reel5stop + 2, "1");
r52 = substring(/:reel5values, /:reel5stop + 1, "1");
r53 = substring(/:reel5values, /:reel5stop, "1");

//프레임 500
for (loop = "11"; loop < 60; loop = loop + 1)
{
    if (eval("/:r" + loop) == "x")
    {
        eval("/:r" + loop) = "10";
    } // end if
    if (eval("/:r" + loop) == "A")
    {
        eval("/:r" + loop) = "11";
    } // end if
    if (eval("/:r" + loop) == "B")
    {
        eval("/:r" + loop) = "12";
    } // end if
} // end of for

//프레임 501
win1 = "0";
win2 = "0";
win3 = "0";
win4 = "0";
win5 = "0";
line1win = "0";
line2win = "0";
line3win = "0";
line4win = "0";
line5win = "0";
if (linesplayed == 1)
{
    call("line1check");
} // end if
if (linesplayed == 2)
{
    call("line1check");
    call("line2check");
} // end if
if (linesplayed == 3)
{
    call("line1check");
    call("line2check");
    call("line3check");
} // end if
if (linesplayed == 4)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
} // end if
if (linesplayed == 5)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
    call("line5check");
} // end if
if (linesplayed == 6)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
    call("line5check");
    call("line6check");
} // end if
if (linesplayed == 7)
{
    call("line1check");
    call("line2check");
    call("line3check");
    call("line4check");
    call("line5check");
    call("line6check");
    call("line7check");
} // end if

//프레임 510
call("featurescattercheck");
/:checksound = "0";
/:totalwin = /:scatterprize + /:featurewin + (win1 + win2 + win3 + win4 + win5 + win6 + win7) * /:bet;
/:checksound = (win1 + win2 + win3 + win4 + win5 + win6 + win7) * /:bet;
/:credits = /:credits + /:checksound;
featurewin = /:totalwin;
call("winsound");
if (/:totalwin > 0)
{
    tellTarget("/wincounter")
    {
        gotoAndPlay(5);
    } // End of TellTarget
} // end if

//프레임 511
if (spinsremaining == 0)
{
    /:scatterwin = no;
    tellTarget("/linesreset")
    {
        gotoAndPlay(10);
    } // End of TellTarget
    tellTarget("/betreset")
    {
        gotoAndPlay(5);
    } // End of TellTarget
    gotoAndPlay(527);
}
else if (/:extrascatters > 0)
{
    gotoAndPlay(345);
}
else
{
    gotoAndPlay(426);
} // end if

//프레임 516
/:scatters = "0";
/:extrascatters = "0";
/:scatterprize = "0";
/:scatterwin = "";
for (loop = "11"; loop < 54; loop = loop + 1)
{
    if (eval("/:r" + loop) == "F")
    {
        /:scatters = /:scatters + 1;
    } // end if
} // end of for
if (/:scatters == 2)
{
    /:spinsremaining = /:spinsremaining + 3;
    /:scatterprize = /:winFx2 * /:bet;
    /:extrascatters = "3";
    gotoAndPlay(345);
} // end if
if (/:scatters == 3)
{
    /:spinsremaining = /:spinsremaining + 7;
    /:scatterprize = /:winFx3 * /:bet;
    /:extrascatters = "6";
    gotoAndPlay(345);
} // end if
if (/:scatters == 4)
{
    /:spinsremaining = /:spinsremaining + 12;
    /:scatterprize = /:winFx4 * /:bet;
    /:extrascatters = "10";
    gotoAndPlay(345);
} // end if
if (/:scatters == 5)
{
    /:spinsremaining = /:spinsremaining + 18;
    /:scatterprize = /:winFx5 * /:bet;
    /:extrascatters = "15";
    gotoAndPlay(345);
} // end if

//프레임 527
featurewin = "0";
stop();

//프레임 536
win1 = "0";
line1win = "0";
line1multiply = "1";
a1 = /:r12;
a2 = /:r22;
a3 = /:r32;
a4 = /:r42;
a5 = /:r52;
call("wildconvert");
if (a1 == "F")
{
    line1win = "0";
}
else if (a1 == a2)
{
    if (a1 == 7 || a1 == 8 || a1 == 9 || a1 == 10 || a1 == 11 || a1 == 12)
    {
        line1win = "2";
    } // end if
    if (a2 == a3)
    {
        line1win = "3";
        if (a3 == a4)
        {
            line1win = "4";
            if (a4 == a5)
            {
                line1win = "5";
            } // end if
        } // end if
       
    } // end if
} // end if
if (line1win > 1)
{
    /:winner = eval("win" + /:r12 + "x" + /:line1win);
    /:win1 = winner * line1multiply;
    tellTarget("/line1")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 545
win2 = "0";
line2win = "0";
line2multiply = "1";
a1 = /:r11;
a2 = /:r21;
a3 = /:r31;
a4 = /:r41;
a5 = /:r51;
call("wildconvert");
if (a1 == "F")
{
    line2win = "0";
}
else if (a1 == a2)
{
    if (a1 == 7 || a1 == 8 || a1 == 9 || a1 == 10 || a1 == 11 || a1 == 12)
    {
        line2win = "2";
    } // end if
    if (a2 == a3)
    {
        line2win = "3";
        if (a3 == a4)
        {
            line2win = "4";
            if (a4 == a5)
            {
                line2win = "5";
            } // end if
        } // end if
       
    } // end if
} // end if
if (line2win > 1)
{
    /:winner = eval("win" + /:r11 + "x" + /:line2win);
    /:win2 = winner * line2multiply;
    tellTarget("/line2")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 554
win3 = "0";
line3win = "0";
line3multiply = "1";
a1 = /:r13;
a2 = /:r23;
a3 = /:r33;
a4 = /:r43;
a5 = /:r53;
call("wildconvert");
if (a1 == "F")
{
    line3win = "0";
}
else if (a1 == a2)
{
    if (a1 == 7 || a1 == 8 || a1 == 9 || a1 == 10 || a1 == 11 || a1 == 12)
    {
        line3win = "2";
    } // end if
    if (a2 == a3)
    {
        line3win = "3";
        if (a3 == a4)
        {
            line3win = "4";
            if (a4 == a5)
            {
                line3win = "5";
            } // end if
        } // end if
       
    } // end if
} // end if
if (line3win > 1)
{
    /:winner = eval("win" + /:r13 + "x" + /:line3win);
    /:win3 = winner * line3multiply;
    tellTarget("/line3")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 563
win4 = "0";
line4win = "0";
line4multiply = "1";
a1 = /:r11;
a2 = /:r22;
a3 = /:r33;
a4 = /:r42;
a5 = /:r51;
call("wildconvert");
if (a1 == "F")
{
    line4win = "0";
}
else if (a1 == a2)
{
    if (a1 == 7 || a1 == 8 || a1 == 9 || a1 == 10 || a1 == 11 || a1 == 12)
    {
        line4win = "2";
    } // end if
    if (a2 == a3)
    {
        line4win = "3";
        if (a3 == a4)
        {
            line4win = "4";
            if (a4 == a5)
            {
                line4win = "5";
            } // end if
        } // end if
       
    } // end if
} // end if
if (line4win > 1)
{
    /:winner = eval("win" + /:r11 + "x" + /:line4win);
    /:win4 = winner * line4multiply;
    tellTarget("/line4")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 572
win5 = "0";
line5win = "0";
line5multiply = "1";
a1 = /:r13;
a2 = /:r22;
a3 = /:r31;
a4 = /:r42;
a5 = /:r53;
call("wildconvert");
if (a1 == "F")
{
    line5win = "0";
}
else if (a1 == a2)
{
    if (a1 == 7 || a1 == 8 || a1 == 9 || a1 == 10 || a1 == 11 || a1 == 12)
    {
        line5win = "2";
    } // end if
    if (a2 == a3)
    {
        line5win = "3";
        if (a3 == a4)
        {
            line5win = "4";
            if (a4 == a5)
            {
                line5win = "5";
            } // end if
        } // end if
       
    } // end if
} // end if
if (line5win > 1)
{
    /:winner = eval("win" + /:r13 + "x" + /:line5win);
    /:win5 = winner * line5multiply;
    tellTarget("/line5")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 582
win6 = "0";
line6win = "0";
line6multiply = "1";
a1 = /:r11;
a2 = /:r23;
a3 = /:r31;
a4 = /:r43;
a5 = /:r51;
call("wildconvert");
if (a1 == "F")
{
    line6win = "0";
}
else if (a1 == a2)
{
    if (a1 == 7 || a1 == 8 || a1 == 9 || a1 == 10 || a1 == 11 || a1 == 12)
    {
        line6win = "2";
    } // end if
    if (a2 == a3)
    {
        line6win = "3";
        if (a3 == a4)
        {
            line6win = "4";
            if (a4 == a5)
            {
                line6win = "5";
            } // end if
        } // end if
       
    } // end if
} // end if
if (line6win > 1)
{
    /:winner = eval("win" + /:r11 + "x" + /:line6win);
    /:win6 = winner * line6multiply;
    tellTarget("/line6")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 592
win7 = "0";
line7win = "0";
line7multiply = "1";
a1 = /:r13;
a2 = /:r21;
a3 = /:r33;
a4 = /:r41;
a5 = /:r53;
call("wildconvert");
if (a1 == "F")
{
    line7win = "0";
}
else if (a1 == a2)
{
    if (a1 == 7 || a1 == 8 || a1 == 9 || a1 == 10 || a1 == 11 || a1 == 12)
    {
        line7win = "2";
    } // end if
    if (a2 == a3)
    {
        line7win = "3";
        if (a3 == a4)
        {
            line7win = "4";
            if (a4 == a5)
            {
                line7win = "5";
            } // end if
        } // end if
       
    } // end if
} // end if
if (line7win > 1)
{
    /:winner = eval("win" + /:r13 + "x" + /:line7win);
    /:win7 = winner * line7multiply;
    tellTarget("/line7")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 606
/:wincombo = "0";
if (/:line1win == 2 || /:line2win == 2 || /:line3win == 2 || /:line4win == 2 || /:line5win == 2 || /:line6win == 2 || /:line7win == 2)
{
    /:wincombo = "2";
} // end if
if (/:line1win == 3 || /:line2win == 3 || /:line3win == 3 || /:line4win == 3 || /:line5win == 3 || /:line6win == 3 || /:line7win == 3)
{
    /:wincombo = "3";
} // end if
if (/:line1win == 4 || /:line2win == 4 || /:line3win == 4 || /:line4win == 4 || /:line5win == 4 || /:line6win == 4 || /:line7win == 4)
{
    /:wincombo = "4";
} // end if
if (/:line1win == 5 || /:line2win == 5 || /:line3win == 5 || /:line4win == 5 || /:line5win == 5 || /:line6win == 5 || /:line7win == 5)
{
    /:wincombo = "5";
} // end if
if (/:wincombo == 2)
{
    tellTarget("/2winsound")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if
if (/:wincombo == 3)
{
    tellTarget("/3winsound")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if
if (/:wincombo == 4)
{
    tellTarget("/4winsound")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if
if (/:wincombo == 5)
{
    tellTarget("/5winsound")
    {
        gotoAndPlay(10);
    } // End of TellTarget
} // end if

//프레임 613
if (a2 == "w")
{
    a2 = a1;
} // end if
if (a3 == "w")
{
    a3 = a2;
} // end if
if (a4 == "w")
{
    a4 = a3;
} // end if
if (a5 == "w")
{
    a5 = a4;
} // end if
if (a2 == "w")
{
    a2 = "nowin";
} // end if

//프레임 620
tellTarget("/reel1")
{
    gotoAndPlay(1);
} // End of TellTarget
tellTarget("/reel2")
{
    gotoAndPlay(1);
} // End of TellTarget
tellTarget("/reel3")
{
    gotoAndPlay(1);
} // End of TellTarget
tellTarget("/reel4")
{
    gotoAndPlay(1);
} // End of TellTarget
tellTarget("/reel5")
{
    gotoAndPlay(1);
} // End of TellTarget

//프레임 628
/:reel1stop = random(/:totalreelsymbols) + 1;
/:reel2stop = random(/:totalreelsymbols) + 1;
/:reel3stop = random(/:totalreelsymbols) + 1;
/:reel4stop = random(/:totalreelsymbols) + 1;
/:reel5stop = random(/:totalreelsymbols) + 1;
추천
0

댓글 2개

전체 195,334 |RSS
자유게시판 내용 검색

회원로그인

진행중 포인트경매

  1. 참여4 회 시작24.04.25 20:23 종료24.05.02 20:23
(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT