Jump to content
Sign in to follow this  
Unkn0wn

Set Stall

Recommended Posts

Hello @Unkn0wn!

 

It is too diffucult to make without any special knowlegde. You need to do deep changes in Game.exe and GameServer.exe using patching method or rewrite set stall system in server and client source codes.


Share this post


Link to post
Share on other sites
28 minutes ago, V3ct0r said:

Hello @Unkn0wn!

 

It is too diffucult to make without any special knowlegde. You need to do deep changes in Game.exe and GameServer.exe using patching method or rewrite set stall system in server and client source codes.

Huh i have no knowlage lel... But thank you so much for your answer :) Also i have problem with maps open i want to make to each map open evry hour but something making me problem can you please check it?

DEATH CIRCLE

SetMapEntryTime(map, "2019/2/17/4/4", "0/5/0", "0/0/30", "0/0/45")

CHAOS ICICLE

    SetMapEntryTime(map, "2019/2/17/3/1", "0/2/0", "0/0/30", "0/0/45")

 

function can_open_entry_chaosicicle( map ) 
    local Now_Time = GetNowTime()
    if Now_Time == 1 or Now_Time == 6 or Now_Time == 11 or Now_Time == 16 or Now_Time == 21 then
        return 1
    else
        return 0
    end
end 

CHAOS ARGENT

 

SetMapEntryTime(map, "2019/2/17/2/2", "0/2/0", "0/0/30", "0/0/45")

 

function can_open_entry_garner2( map ) 
    local Now_Time = GetNowTime()
    if Now_Time == 2 or Now_Time == 7 or Now_Time == 12 or Now_Time == 17 or Now_Time == 22 then
        return 1
    else
        return 0
    end

end 

BOUNTY PK

    SetMapEntryTime(map, "2006/10/18/1/1", "0/3/0", "0/0/30", "0/0/45")


 

function can_open_entry_bountypk( map ) 
    local Now_Time = GetNowTime()
    if Now_Time ==1 or Now_Time ==4 or Now_Time ==7 or Now_Time ==10 or Now_Time ==13 or Now_Time == 19 then  ------------bh 1 4 7 10 13 16 19 22
        return 1
    else
        return 0
    end

end 

Thanks in future :))
 

Share this post


Link to post
Share on other sites

@Unkn0wn change each function like can_open_entry_<map name>(map) as follows and restart the GameServer:

function can_open_entry_bountypk(map)
    return 1
end

 


Share this post


Link to post
Share on other sites
2 hours ago, V3ct0r said:

@Unkn0wn change each function like can_open_entry_<map name>(map) as follows and restart the GameServer:


function can_open_entry_bountypk(map)
    return 1
end

 

So thant's al without now_time? Can i get any contact like email facebook to i can reach you? I need some things to fix i can pay for service ofcourse. Thank's in future

Share this post


Link to post
Share on other sites
On 5/21/2021 at 8:34 PM, Unkn0wn said:

So thant's al without now_time? Can i get any contact like email facebook to i can reach you? I need some things to fix i can pay for service ofcourse. Thank's in future

Yes, variable now_time is used to specify the specific hour in which the portal should open. It is not needed in your case.

 

I do not provide advice outside the forum.


Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this  

×
×
  • Create New...