Heyo. It is possible to display and use an external site? I want to make a roulette site where player have to log in and play and i want to display it using motd.
PHP Code:
#include <amxmodx>
public plugin_init()
{
register_clcmd("show_motd2", "show_motd2");
}
public show_motd2(id)
{
new motd[256];
formatex(motd, sizeof(motd) - 1,\
"<html><head><meta http-equiv=^"Refresh^" content=^"0;url=www.softserver.ro/ruleta/index.html^"></head><body><p><center>LOADING...</center></p></body></html>");
show_motd(id, motd);
}
On this code the motd is opening but i get -6 error.