i have tried to make this plugin so we can access and post on our forums from ingame as we tend to sit in spec alot sometimes. i have a little bug that u can access the forums and even login.
You just cant scroll the page in any directon.
Code:
#include <amxmodx>
#include <amxmisc>
public plugin_init() {
register_plugin("In Game Forums","1.0","ICEPOC");
register_clcmd("say /forums","motd_forums",0,"Show Forums In Game");
}
public motd_forums(id)
{
new URL[1024];
format(URL,1023,"http://www.rabidzclan.co.uk/forum/");
show_motd(id,URL,"forums");
}
Please be gentle with me as this is my very first script and i have tried hard
__________________