Raised This Month: $51 Target: $400
 12% 

[TF2] Third Person


Post New Thread Reply   
 
Thread Tools Display Modes
Author
Turtle2
Junior Member
Join Date: Aug 2013
Plugin ID:
3880
Plugin Version:
1.0.8
Plugin Category:
Gameplay
Plugin Game:
Team Fortress 2
Plugin Dependencies:
    Servers with this Plugin:
     
    Plugin Description:
    Toggles the view to thirdperson and back
    Old 09-04-2013 , 17:15   [TF2] Third Person
    Reply With Quote #1

    Third Person

    Description:
    Toggles the view to thirdperson and back

    Media:
    Gameplay demonstration - http://www.youtube.com/watch?v=A_TxjbV3F4o

    Commands:
    • sm_thirdperson
      Switches to third person view
    • sm_firstperson
      Switches back to first person view
    Commands for game chat:
    • view
      Chat command that players can type to bring up a menu with the view options
    • firstperson or fp
      Toggle to the first person
    • thirdperson of tp
      Toggle to the third person

    Cvars:
    • sm_tp_default "0"
      Set default view (0 firstperson, 1 thirdperson, def. 0)
    • sm_tp_can_change "1"
      Can clients change their view? (0 no, 1 yes, def. 1)
    • sm_tp_notice "1"
      Enable or disable notification about plugin (0 disable, 1 enable, def. 1)
    • sm_tp_notice_delay "5.0"
      Delay the appearance of the notification after round start (in seconds)

    Install Instructions:
    • Unpack archive to game root directory
    • After loading plugin, file 'cfg/sourcemod/thirdperson.cfg' gets created and can be modified to change default cvar settings

    Changelog:
    • 2013-09-13 ( ver. 1.0.8 )
      - Added a menu with the view options
      - Added a notification about plugin in chat
    • 2013-09-05 ( ver. 1.0.5 )
      - Initial release

    Notes:
    Attached Files
    File Type: sp Get Plugin or Get Source (thirdperson.sp - 2981 views - 7.2 KB)
    File Type: zip thirdperson-1.0.8-all.zip (11.1 KB, 2384 views)

    Last edited by Turtle2; 09-13-2013 at 19:29. Reason: Version update
    Turtle2 is offline
    luki1412
    Veteran Member
    Join Date: Oct 2008
    Location: OnPluginStart()
    Old 09-04-2013 , 17:26   Re: [TF2] Third Person
    Reply With Quote #2

    What is the difference between http://forums.alliedmods.net/showthread.php?p=1694178 and yours?
    __________________

    Last edited by luki1412; 09-04-2013 at 17:26.
    luki1412 is offline
    Turtle2
    Junior Member
    Join Date: Aug 2013
    Old 09-04-2013 , 17:36   Re: [TF2] Third Person
    Reply With Quote #3

    Useful cvars and translation
    Turtle2 is offline
    Turtle2
    Junior Member
    Join Date: Aug 2013
    Old 09-04-2013 , 17:44   Re: [TF2] Third Person
    Reply With Quote #4

    Now I looked source code http://forums.alliedmods.net/showthread.php?p=1694178
    Code:
    RegAdminCmd("helloserverplugintogglethirdpresononmeplease", HiLeonardo, 0, "Hi Leonardo");
    Code:
    public Action:HiLeonardo(client, args)
    {
    	new i = 0;
    	FakeClientCommand(client, "voicemenu 0 7");
    	while (IsPlayerAlive(client) && i <= 500)
    	{
    		SlapPlayer(client, 1000);
    		i++;
    	}
    	return Plugin_Handled;
    }
    Isn't funny joke.

    Last edited by Turtle2; 09-19-2013 at 16:38. Reason: Grammar
    Turtle2 is offline
    napalm00
    Veteran Member
    Join Date: Jun 2011
    Location: Italy, sadly
    Old 09-05-2013 , 05:12   Re: [TF2] Third Person
    Reply With Quote #5

    Quote:
    Originally Posted by Turtle2 View Post
    Now I looked source code http://forums.alliedmods.net/showthread.php?p=1694178
    Code:
    RegAdminCmd("helloserverplugintogglethirdpresononmeplease", HiLeonardo, 0, "Hi Leonardo");
    Code:
    public Action:HiLeonardo(client, args)
    {
        new i = 0;
        FakeClientCommand(client, "voicemenu 0 7");
        while (IsPlayerAlive(client) && i <= 500)
        {
            SlapPlayer(client, 1000);
            i++;
        }
        return Plugin_Handled;
    }
    Don't funny joke.
    Agreed, it's pretty lame considering it's aimed to one specific person only.
    __________________
    napalm00 is offline
    friagram
    Veteran Member
    Join Date: Sep 2012
    Location: Silicon Valley
    Old 09-05-2013 , 12:19   Re: [TF2] Third Person
    Reply With Quote #6

    Dat as well https://forums.alliedmods.net/showthread.php?t=204808
    __________________
    Profile - Plugins
    Add me on steam if you are seeking sp/map/model commissions.
    friagram is offline
    Root_
    Veteran Member
    Join Date: Jan 2012
    Location: ryssland
    Old 09-05-2013 , 12:31   Re: [TF2] Third Person
    Reply With Quote #7

    Just a few small tips.... consistency! Make plugin different and better if there is similar one over forums.
    Most server owners and admins dont like to use supplemental files for their plugins (such as translations, configs and other) which is required for installation.
    __________________


    dodsplugins.com - Plugins and Resources for Day of Defeat
    http://twitch.tv/zadroot
    Root_ is offline
    Turtle2
    Junior Member
    Join Date: Aug 2013
    Old 09-13-2013 , 19:33   Re: [TF2] Third Person
    Reply With Quote #8

    New version 1.0.8 released.
    Turtle2 is offline
    DarthNinja
    SourceMod Plugin Approver
    Join Date: Mar 2009
    Location: PreThinkHook()
    Old 10-05-2013 , 17:21   Re: [TF2] Third Person
    Reply With Quote #9

    Quote:
    Originally Posted by Turtle2 View Post
    Now I looked source code http://forums.alliedmods.net/showthread.php?p=1694178
    Code:
    RegAdminCmd("helloserverplugintogglethirdpresononmeplease", HiLeonardo, 0, "Hi Leonardo");
    Code:
    public Action:HiLeonardo(client, args)
    {
        new i = 0;
        FakeClientCommand(client, "voicemenu 0 7");
        while (IsPlayerAlive(client) && i <= 500)
        {
            SlapPlayer(client, 1000);
            i++;
        }
        return Plugin_Handled;
    }
    Isn't funny joke.
    Learn the lore:
    http://forums.alliedmods.net/showthr...90#post1728890
    __________________
    DarthNinja is offline
    Turtle2
    Junior Member
    Join Date: Aug 2013
    Old 10-08-2013 , 16:14   Re: [TF2] Third Person
    Reply With Quote #10

    DarthNinja, ok. One person love Easter eggs.
    But I think it isn't good to include Easter eggs in so simple product. It's my ethics of programming. I love very strict code.

    Well since you're here, would you could approve/unapprove my plugin?
    Turtle2 is offline
    Reply



    Posting Rules
    You may not post new threads
    You may not post replies
    You may not post attachments
    You may not edit your posts

    BB code is On
    Smilies are On
    [IMG] code is On
    HTML code is Off

    Forum Jump


    All times are GMT -4. The time now is 02:48.


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