Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Hello World (In Detail)

DLord3324

Unremarkable
Joined
Nov 16, 2022
Messages
15
Im Dynasty.

Im an artist and a musician, also i have other hobbies such as modding, charting for guitar hero and making dumb midis and playing videogames, im also a programmer but im not longer into that topic.

new to tf2 (somehow new) and started grinding on my favorite weapon; the loose cannon.
also im a fan of boomer shooters and brawl figth games, im very picky on videogames.
i have a 1 year of experience making music, but im a rookie artist.
im into modding videogames, im more into wads from doom 2, wich i already made one wich is still in dev
i have made "charts" or levels for guitar hero for the community of clone hero
i had a in dev rpg game called crossed but the game got canceled due to my fault of making the game extremely complex in terms of gameplay.
im not between making music, art and midis.

Migth making some ligth.jpg
 

Chris TCC

Blackwonder's Own
Staff Member
Admin
Joined
Jan 16, 2019
Messages
3,833
Code:
#pragma semicolon 1

public void OnPluginStart()
{
    RegConsoleCmd("sm_helloworld", Command_hello_world, "Come on, give it a try");
}

public Action Command_hello_world(int iClient, int iArgs)
{
    if(!IsClientInGame(iClient) || IsFakeClient(iClient))
    {
        return Plugin_Handled;
    }
    ReplyToCommand(iClient, "Hello, world!")
    return Plugin_Handled;
}

but yeah hi
me chris and I wanna get into programming but my skills are so bad that I can barely program new plugins for the server
 

Who Read This Thread (Total Members: 3)

User Who Replied This Thread (Total Members: 2)

Top Bottom