reroute issueflexer BANNED Offline 03.07.21 02:35:56 pm hi! i cant reroute players with "reroute" comand. i created this script with two samples: 1. !rr in chat to reroute 2. f2 menu button to reroute Spoiler 1234567891011121314151617181920212223242526addhook("say","RR") -- text function RR(id,txt) if txt=="!rr" then parse("reroute "..id.." 1.1.1.1:1111") -- change it msg2(id,"true") return 1 end end addhook("serveraction","rrc") -- menu function rrc(id,action) if action==1 then menu(id,"Reroute,RerouteMe") end end addhook("menu", "rrm") function rrm(id,title,button) if title=="Reroute" then if button==1 then parse("reroute "..id.." 1.1.1.1:1111") -- change it msg2(id,"true") end end end i tried with some online CS2D servers IPs but reroute comand wont work, how can i fix it? console : https ://imgur.com/a/AkPzGqV
Re: reroute issueThe Dark Shadow User Offline 03.07.21 05:11:44 pm That's because you can't reroute yourself as the "server hoster". That's gonna work for other players for sure though. Make sure to use CS2D dedicated server instead.