14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
#include "hooker_action"
|
|
|
|
void main()
|
|
{
|
|
object oObject=GetPCSpeaker();
|
|
object oHooker=OBJECT_SELF;
|
|
string sString="iFee";
|
|
int iCash=GetLocalInt(oObject, sString);
|
|
|
|
HookerMain(oObject, oHooker, iCash);
|
|
HookerEffect(oObject, iCash);
|
|
|
|
}
|