24 Aug 12, 06:29PM
(24 Aug 12, 01:50PM)Edward Wrote: But I will have to wait next version to use /ignore cla and /ignore rvsf
You are not obliged to wait. You can try to make the script coded by Bukz compatible with the current AC version if you want :
[cubescript]const ignoreteam [
if (curmodeattr team) [
_arg1 = (toupper $arg1)
if (|| (strcmp $_arg1 CLA) (strcmp $_arg1 RVSF)) [
loop itl 21 [
if (isclient $itl) [
if (= (player $itl team) (at "0 1" (strcmp $_arg1 RVSF))) [ ignore $itl ]
]
]
] [
if (checkrange $_arg1 0 1) [
loop itl 21 [
if (isclient $itl) [
if (= (player $itl team) $_arg1) [ ignore $itl ]
]
]
]
]
] [ echo (red)Error: (white)Not in a team mode. ]
]
const ignoreenemy [ ignoreteam (at "0 1" (! (player1 team))) ][/cubescript]