Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

:*:making DI FD TOB to be playable 3 times

Junior Spellweaver
Joined
Sep 17, 2012
Messages
115
Reaction score
7
i tried changing FD DI TOB to be playable 3 times a day but after hours of try and hit and trials i failed to do so successfully ?
any help will be appretiated.
thanks
 
Newbie Spellweaver
Joined
Nov 10, 2013
Messages
81
Reaction score
27
Hi,

Well something is here on this code...

Code:
if $player1_time == $today_time
                //?????????????,??????????????
                $player1_number =  GetPlayerVar( $teamplayer1_id, 3405 )
                if $player1_number >= 1  [B]'HERE IS THE NUMBER OF TIMES[/B] [B]SO THIS LINE SHOULD BE if $player1_number >= 3[/B]
                    [URL="http://forum.ragezone.com/usertag.php?do=list&action=hash&hash=name"]#name[/URL]  = GetPlayerInfo( $teamplayer1_id, "name" )
                    BC( "chat", "player", -1, "The player ",[URL="http://forum.ragezone.com/usertag.php?do=list&action=hash&hash=name"]#name[/URL] ," has already entered the Dragon Island instance." )
                    $Stop = $Stop + 1
                endif

[B]'THE BELOW CODE IS THE STATUS I THINK YOU NEED TO DELETE[/B]... [B][COLOR=#ff0000]THE LAST ENDIF DON'T DELETE[/COLOR] !![/B]
                $status = IsExistStatus( $teamplayer1_id, 10700 )
                if $status == 0
                    [URL="http://forum.ragezone.com/usertag.php?do=list&action=hash&hash=name"]#name[/URL]  = GetPlayerInfo( $teamplayer1_id, "name" )
                    BC( "chat", "player", -1, "The player ",[URL="http://forum.ragezone.com/usertag.php?do=list&action=hash&hash=name"]#name[/URL] ," has has the Ancient Dragon Roar status and is unable to enter Dragon Island." )
                    BC( "dialogbox", "player", -1, "Someone in your party has has the Ancient Dragon Roar status and is unable to enter Dragon Island." )
                    return
                endif
            endif '[COLOR=#ff0000][B]<-DONT TELETE THIS[/B][/COLOR]

[B]'The code will be:[/B]
if $player1_time == $today_time
                //?????????????,??????????????
                $player1_number =  GetPlayerVar( $teamplayer1_id, 3405 )
                if $player1_number >= 3 
                    [URL="http://forum.ragezone.com/usertag.php?do=list&action=hash&hash=name"]#name[/URL]  = GetPlayerInfo( $teamplayer1_id, "name" )
                    BC( "chat", "player", -1, "The player ",[URL="http://forum.ragezone.com/usertag.php?do=list&action=hash&hash=name"]#name[/URL] ," has already entered the Dragon Island instance." )
                    $Stop = $Stop + 1
                endif
 endif

ok so it should be all you need to do, but i don't know if will work i can't test
DO THIS FOR player1_time, player2_time, player3_time, player4_time, player5_time, player6_time FOR EACH PLAYER
 
Junior Spellweaver
Joined
Sep 17, 2012
Messages
115
Reaction score
7
thanks for the reply bro i'll test it



it worked like a charm bro. thanks alot really.

just one more thing bro and its extremely important.

most of my accounts are suddenly unable to collect mail now.nothing happens when i try to collect mail.

got any idea how to fix this problem?
 
Newbie Spellweaver
Joined
Nov 10, 2013
Messages
81
Reaction score
27
nope this one i don't know, sorry... if i find i tell you... and if you find post here how to do.

the game system doesn't tell you anything or in chat idk??
 
Last edited:
Junior Spellweaver
Joined
Sep 17, 2012
Messages
115
Reaction score
7
tried alot to solve this problem and system nothing tells at all.although i can explain this problem so maybe u get a better understanding.

i used world map files (gameserver gateserver managerserver)confinement.rar in which confinement is deleted to remove confinement problem and character data corrupted messege.now instead the mail problem occurs after some days of using those files.once the mail problem occurs and i change worldmap files back to original files and try to collect mail then im sent to confinement room(character data corrupted error too).but if i use the modified worldmap files which have confinement deleted than nothing happens when i collect mail.no system messege,no chat,no item collected,simply nothing.

also this problem doesnt start to happen on all accounts at once but eventually it does happen to all accounts 1 by 1.
 
Newbie Spellweaver
Joined
Nov 10, 2013
Messages
81
Reaction score
27
try with an original GameServer but modify only the file where you need to delete confinement room and then tell what happened
 
Back
Top