Quantcast
Channel: Forum VeryGames
Viewing all articles
Browse latest Browse all 5196

[PARTAGE] Steam

$
0
0
Alors voila il est 3h30 et je sais pas quoi faire alors je partage un plugin que je viens de trouver qui pourrait peut être intérésser certaines personnes, ce plugin n'est pas de moi. Ce plugin consiste a donner votre steam ID en tapant la commande !mysteam

Code:

#include <sourcemod>
#include <colors.inc>
 
public Plugin:myinfo =
{
        name = "My Steam",
        author = "Steven",
        description = "****",
        version = "1.0",
        url = "http://www.nsnf-clan.net"
}
 
public OnPluginStart()
{
        RegConsoleCmd("sm_mysteam", mysteam);
}
 
public Action:mysteam(client, args)
{
        new String:steamid[64];
        GetClientAuthString(client, steamid, 64);
        CPrintToChat(client, "{green}Votre steam id : {red}%s",steamid);
}


Viewing all articles
Browse latest Browse all 5196