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

Advanced Commands (0.16)


Post New Thread Reply   
 
Thread Tools Display Modes
Nolongerinthegame
AlliedModders Donor
Join Date: Sep 2005
Old 11-09-2015 , 15:26   Re: Advanced Commands (0.16)
Reply With Quote #1101

Theres a bug in CSGO. Someone tried to do sm_give usp and it crashed the server.,

The USP doesnt really exist in CSGO anymore, but CSGO engine somehow detects it.

I'm using version 0.19 but cant find the download anywhere, here is source file
Attached Files
File Type: sp Get Plugin or Get Source (advcommands.sp - 324 views - 95.1 KB)

Last edited by Nolongerinthegame; 11-09-2015 at 16:47.
Nolongerinthegame is offline
nguyenbaodanh
AlliedModders Donor
Join Date: Jun 2007
Location: HCMC, Vietnam
Old 11-11-2015 , 22:52   Re: Advanced Commands (0.16)
Reply With Quote #1102

Any fix version of this plugin for CSGO ? It's quite useful, but giving too much console error spams >.<
__________________
nguyenbaodanh is offline
Hunter6272
Senior Member
Join Date: Jun 2015
Location: Don't know
Old 11-12-2015 , 08:11   Re: Advanced Commands (0.16)
Reply With Quote #1103

Quote:
Originally Posted by nguyenbaodanh View Post
Any fix version of this plugin for CSGO ? It's quite useful, but giving too much console error spams >.<
The above one Advcommands 0.19 is fixed version for console spams,The only problem is that it enables deadchat so anyone can see deadplayer's chat (not voicechat,just chat)
__________________
Patience is the key to success.
Hunter6272 is offline
maxolahird
Veteran Member
Join Date: Dec 2012
Old 11-13-2015 , 14:47   Re: Advanced Commands (0.16)
Reply With Quote #1104

would be good if we could choose to disable all the stuff individualy, so many useless things or already done by other plugins...
maxolahird is offline
krikus62
Senior Member
Join Date: Jan 2015
Old 11-17-2015 , 15:17   Re: Advanced Commands (0.16)
Reply With Quote #1105

Quote:
Originally Posted by nelioneil View Post
Theres a bug in CSGO. Someone tried to do sm_give usp and it crashed the server.,

The USP doesnt really exist in CSGO anymore, but CSGO engine somehow detects it.

I'm using version 0.19 but cant find the download anywhere, here is source file
Unable to compile
Anyone can fix it?
krikus62 is offline
hamilton5
Veteran Member
Join Date: Oct 2012
Location: USA
Old 11-20-2015 , 08:44   Re: Advanced Commands (0.16)
Reply With Quote #1106

this thing is such a pile from the stone age, team swap does not even drop bomb, holy cow the code, you don't really need gamedata file for csgo.. and whos gonna update this thing for the translation, heh ppl still keep comming back for it ;]

Code:
        new c4 = GetPlayerWeaponSlot(client,CS_SLOT_C4);
        if (c4 != -1) DropWeapon(client,c4);

DropWeapon(client,ent)
{
    if (hDrop != INVALID_HANDLE)
        SDKCall(hDrop,client,ent,0,0);
    else
    {
        decl String:edict[MAX_NAME];
        GetEdictClassname(ent,edict,sizeof(edict));
        FakeClientCommandEx(client,"use %s;drop",edict);
    }
}
to
Code:
        new bombindex = GetPlayerWeaponSlot(client, CS_SLOT_C4);
        if (IsValidEntity(bombindex)) { CS_DropWeapon(client, bombindex, true); }
hamilton5 is offline
Hunter6272
Senior Member
Join Date: Jun 2015
Location: Don't know
Old 11-20-2015 , 10:17   Re: Advanced Commands (0.16)
Reply With Quote #1107

Quote:
Originally Posted by hamilton5 View Post
this thing is such a pile from the stone age, team swap does not even drop bomb, holy cow the code, you don't really need gamedata file for csgo.. and whos gonna update this thing for the translation, heh ppl still keep comming back for it ;]

Code:
        new c4 = GetPlayerWeaponSlot(client,CS_SLOT_C4);
        if (c4 != -1) DropWeapon(client,c4);

DropWeapon(client,ent)
{
    if (hDrop != INVALID_HANDLE)
        SDKCall(hDrop,client,ent,0,0);
    else
    {
        decl String:edict[MAX_NAME];
        GetEdictClassname(ent,edict,sizeof(edict));
        FakeClientCommandEx(client,"use %s;drop",edict);
    }
}
to
Code:
        new bombindex = GetPlayerWeaponSlot(client, CS_SLOT_C4);
        if (IsValidEntity(bombindex)) { CS_DropWeapon(client, bombindex, true); }
Can you also add a code for line 734 ? That line when solved starts showing deadchat to all

I m using this version : https://forums.alliedmods.net/showpo...postcount=1102
__________________
Patience is the key to success.

Last edited by Hunter6272; 11-20-2015 at 10:18.
Hunter6272 is offline
hamilton5
Veteran Member
Join Date: Oct 2012
Location: USA
Old 11-20-2015 , 10:28   Re: Advanced Commands (0.16)
Reply With Quote #1108

If someone could tell me why it needs these PrintToChatEx, AdvNotify, the protobuff stuff... that would be great.... It should use ShowActivity2 right ? 2 or 4 bloated functions? I want to rip it all out too..

Last edited by hamilton5; 11-21-2015 at 02:13.
hamilton5 is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 11-22-2015 , 22:57   Re: Advanced Commands (0.16)
Reply With Quote #1109

someone should make a new version of this from the ground up for csgo
__________________
PresidentEvil is offline
poel
Veteran Member
Join Date: Mar 2013
Old 12-10-2015 , 17:09   Re: Advanced Commands (0.16)
Reply With Quote #1110

L 12/10/2015 - 22:44:52: [SM] Displaying call stack trace for plugin "advcommands.smx":
L 12/10/2015 - 22:44:52: [SM] [0] Line 734, advcommands.sp::OnSayText()
L 12/10/2015 - 22:49:07: [SM] Plugin encountered error 21: Native is not bound
L 12/10/2015 - 22:49:07: [SM] Native "PbReadRepeatedString" reported:
L 12/10/2015 - 22:49:07: [SM] Displaying call stack trace for plugin "advcommands.smx":
L 12/10/2015 - 22:49:07: [SM] [0] Line 734, advcommands.sp::OnSayText()

Need update please !!
poel 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 03:07.


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