AinsLord Posted May 11, 2021 Group: Members Topic Count: 261 Topics Per Day: 0.08 Content Count: 758 Reputation: 20 Joined: 11/21/15 Last Seen: 4 hours ago Share Posted May 11, 2021 example i do have @mall bindcmd can this have like cant use when your being hit by monsters on in PK maps?? coz as far as i know the only commands can have this are the @go/warp/jump thnx for hel appreciate it Quote Link to comment Share on other sites More sharing options...
0 Mastagoon Posted May 12, 2021 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 63 Reputation: 38 Joined: 07/04/19 Last Seen: December 14, 2024 Share Posted May 12, 2021 (edited) Here's one solution: In script.inc. Add this function at the end of the file: BUILDIN_FUNC(logout_tick) { TBL_PC *sd; if (!script_rid2sd(sd)) { script_pushint(st, -1); return SCRIPT_CMD_FAILURE; } if (sd->canlog_tick == 0) script_pushint(st, 0); else script_pushint(st, DIFF_TICK(gettick(), sd->canlog_tick)); return SCRIPT_CMD_SUCCESS; } in script_def.inc. Add this line at the end of the file: BUILDIN_DEF(logout_tick, ""), Then recompile your server. This script command will check for the same timer used to check if a player can log out or not. Basically it returns how many milliseconds ago was the character in combat. Example usage: - script testscript -1,{ OnInit: bindatcmd("testcmd", strnpcinfo(3)+"::OnAtCmd"); end; OnAtCmd: .@tick = logout_tick(); dispbottom "You have been in combat "+.@tick/1000+" seconds ago."; if(.@tick >= 5000 || .@tick == 0) dispbottom "Command used successfully!"; else dispbottom "You cannot use this command if you have been in combat during the last 5 seconds."; end; } Result: Edited May 12, 2021 by Mastagoon 1 Quote Link to comment Share on other sites More sharing options...
0 AinsLord Posted May 12, 2021 Group: Members Topic Count: 261 Topics Per Day: 0.08 Content Count: 758 Reputation: 20 Joined: 11/21/15 Last Seen: 4 hours ago Author Share Posted May 12, 2021 10 hours ago, Mastagoon said: Here's one solution: In script.inc. Add this function at the end of the file: BUILDIN_FUNC(logout_tick) { TBL_PC *sd; if (!script_rid2sd(sd)) { script_pushint(st, -1); return SCRIPT_CMD_FAILURE; } if (sd->canlog_tick == 0) script_pushint(st, 0); else script_pushint(st, DIFF_TICK(gettick(), sd->canlog_tick)); return SCRIPT_CMD_SUCCESS; } in script_def.inc. Add this line at the end of the file: BUILDIN_DEF(logout_tick, ""), Then recompile your server. This script command will check for the same timer used to check if a player can log out or not. Basically it returns how many milliseconds ago was the character in combat. Example usage: - script testscript -1,{ OnInit: bindatcmd("testcmd", strnpcinfo(3)+"::OnAtCmd"); end; OnAtCmd: .@tick = logout_tick(); dispbottom "You have been in combat "+.@tick/1000+" seconds ago."; if(.@tick >= 5000 || .@tick == 0) dispbottom "Command used successfully!"; else dispbottom "You cannot use this command if you have been in combat during the last 5 seconds."; end; } Result: thnx a lot man Quote Link to comment Share on other sites More sharing options...
0 AinsLord Posted May 17, 2021 Group: Members Topic Count: 261 Topics Per Day: 0.08 Content Count: 758 Reputation: 20 Joined: 11/21/15 Last Seen: 4 hours ago Author Share Posted May 17, 2021 (edited) On 5/12/2021 at 9:38 AM, Mastagoon said: Here's one solution: In script.inc. Add this function at the end of the file: BUILDIN_FUNC(logout_tick) { TBL_PC *sd; if (!script_rid2sd(sd)) { script_pushint(st, -1); return SCRIPT_CMD_FAILURE; } if (sd->canlog_tick == 0) script_pushint(st, 0); else script_pushint(st, DIFF_TICK(gettick(), sd->canlog_tick)); return SCRIPT_CMD_SUCCESS; } in script_def.inc. Add this line at the end of the file: BUILDIN_DEF(logout_tick, ""), Then recompile your server. This script command will check for the same timer used to check if a player can log out or not. Basically it returns how many milliseconds ago was the character in combat. Example usage: - script testscript -1,{ OnInit: bindatcmd("testcmd", strnpcinfo(3)+"::OnAtCmd"); end; OnAtCmd: .@tick = logout_tick(); dispbottom "You have been in combat "+.@tick/1000+" seconds ago."; if(.@tick >= 5000 || .@tick == 0) dispbottom "Command used successfully!"; else dispbottom "You cannot use this command if you have been in combat during the last 5 seconds."; end; } Result: @Mastagoon sir this is the script that im going to use regarding the bindcommand - script maintown -1,{ OnInit: bindatcmd "maintown",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: if(gettimetick(2) < cooldowntime) { dispbottom "Please wait "+(cooldowntime - gettimetick(2))+" seconds."; end; } atcommand "@warp alexandria 158 144"; set cooldowntime, gettimetick(2) + 10; end; } where should i put the script? heres what i made - script maintown -1,{ OnInit: bindatcmd "maintown",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: .@tick = logout_tick(); dispbottom "You have been in combat "+.@tick/1000+" seconds ago."; if(.@tick >= 5000 || .@tick == 0) atcommand "@warp alexandria 158 144"; else dispbottom "You cannot use this command if you have been in combat during the last 5 seconds."; end; } thanks again in advance Edited May 17, 2021 by AinsLord more info Quote Link to comment Share on other sites More sharing options...
Question
AinsLord
example i do have @mall bindcmd can this have like cant use when your being hit by monsters on in PK maps??
coz as far as i know the only commands can have this are the @go/warp/jump
thnx for hel appreciate it
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.