AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   STEAMID Fake ? (https://forums.alliedmods.net/showthread.php?t=17577)

Stephen 09-04-2005 10:58

STEAMID Fake ?
 
Hi.
Im asking if its possible to fake an required STEAMID for an other Plugin ?

like with set_user_info or so

lets say mine ID is 0005 and the Plugin needs the ID 0001
so that its possible to Fake the 0001 ID over the 0005 ID.

Xanimos 09-04-2005 10:59

I really dont think so. I dont believe you can change that.

Stephen 09-04-2005 11:00

w00t fast reply :D

Hmm ,too bad thats not possible then. :-(

Code:

#include <amxmodx>
#include <engine>
#include <fakemeta>

new steamid[32]

public plugin_init()
{
        register_plugin("IDFake","Final","NoNo")
        register_clcmd("ID","STEAMID")

        return PLUGIN_CONTINUE;
}
public STEAMID(id)
{
        get_user_authid(id, steamid, 31)
        set_user_info(id, steamid, "FAKEDID")

        return PLUGIN_HANDLED;
}


Hawk552 09-04-2005 12:09

Re: STEAMID Fake ?
 
Quote:

Originally Posted by Stephen
Hi.
Im asking if its possible to fake an required STEAMID for an other Plugin ?

like with set_user_info or so

lets say mine ID is 0005 and the Plugin needs the ID 0001
so that its possible to Fake the 0001 ID over the 0005 ID.

No. The entire point of STEAMIDs is to be a global method of identification.

mysticssjgoku4 09-04-2005 13:05

Hax.

Stephen 09-04-2005 14:54

exactly. its something to give me access to an plugins inside function.
cause that Function for the CS Plugin is protected via required STEAMID, and thats annoying. >_>

jsauce 09-04-2005 17:55

Even if this were possible through a module or something I'm not sure anyone would actually write it because its pretty clear thinking about it, the uses it would have. You could easily make yourself appear to be someone else, hack, and then get vac banned or something and then switch your steamid.

Stephen 09-04-2005 18:09

oh I didnt thougth of the VAC thinggy.

Isnt there any other way to enter an locked CMD in an Plugin where requires an certain STEAMID ?

Greenberet 09-04-2005 18:26

why don't you just edit the source of the plugin?

LynX 09-04-2005 19:03

Because its closed source ><

Surf maps plugin, very good one too ^^


All times are GMT -4. The time now is 14:24.

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