SA-MP Forums Archive
In game website help [FIXED thank you Pandabeer1337] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: In game website help [FIXED thank you Pandabeer1337] (/showthread.php?tid=78098)



In game website help [FIXED thank you Pandabeer1337] - Derksen123 - 17.05.2009

hey how can i make if a player type /site in game that he see the site of my server??
thanks


Re: In game website help - Think - 17.05.2009

pawn Код:
if(!strcmp("/site", cmdtext, true, 10))
{
  SendClientMessage(playerid,COLOR_GREEN, "[url]http://www.example.com"[/url]);
  return 1;
}



Re: In game website help - Derksen123 - 17.05.2009

thank you my friend