AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [help] motd (https://forums.alliedmods.net/showthread.php?t=184429)

Moshiko014 05-05-2012 08:27

[help] motd
 
PHP Code:


public ShowMotd(idplayer)
{
    new 
szSteamId[32]
    new 
szMotd[256]
    new 
szTemp[128]
    
    
get_user_authid(playerszSteamIdcharsmax(szSteamId))
    
    
add(szMotdcharsmax(szMotd), "<html>")
    
add(szMotdcharsmax(szMotd), "<body leftmargin=^"0^" topmargin=^"0^" rightmargin=^"0^" bottommargin=^"0^">")
    
    
formatex(szTempcharsmax(szTemp), "<iframe src=^"http://website.com/profile.php?server=jail&steamid=%s^" width=^"1050%^" height=^"3500%^">", szSteamId)
    
add(szMotdcharsmax(szMotd), szTemp)
    
    
add(szMotdcharsmax(szMotd), "</body>")
    
add(szMotdcharsmax(szMotd), "</html>")
    
show_motd(idszMotd"Achievements")


when i put this code. the motd shows me only this, instend the real website.

PHP Code:

<iframe src=^"http://website.com/profile.php?server=jail&steamid=%s^" width=^"1050%^" height=^"3</body></html> 

help someone?


All times are GMT -4. The time now is 13:20.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.