hi. what i want to do is to change there
view point to
thirdperson, every time a player uses :
!pskin, and when they close the menu, change the
view point to
first person.
now, i dont know anything about sourcepawn and sourcecoding, all i know is a bit of python..
but this is what i have tried till now and none have worked (cause i know nothing about source coding

):
in the
PlayerSkin.sp file, there was a couple of
Classes or functions:
HTML Code:
1. public Action [B]Command_PlayerSkin(int client, int args) [/B]
i inserted [B]ClientCommand(client, "thirdperson");[/B] on top of its first line.
2. stock void [B]DisplaySkinMenu(int client, bool HaveCategories)[/B]
i did the same as i did with the firstone.
3. public int SkinMenuHandle(Handle menu, MenuAction action, int param1, int param2)
now in this one, there is no client variable so i checked the code bellow it, and it seemed like -[B]param1[/B]- is being used as the client, so i added[B] [ClientCommand(param1, "thirdperson");][/B] at the start of it, and then there was a [case MenuAction_End:] at the ed of it that had [B][CloseHandle(menu);][/B] in it, so i inserted [B][ClientCommand(param1, "thirdperson");][/B] above the closehandel function.
and
Sorry if i have any typo or grammer issues, im not an native english speaker and not a good english typer.
+ sv_allow_thirdperson was set to 1
pls help me..