AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   German (https://forums.alliedmods.net/forumdisplay.php?f=19)
-   -   Suche ein Money Plugin (https://forums.alliedmods.net/showthread.php?t=199742)

MaestroMichi 11-01-2012 08:36

Suche ein Money Plugin
 
Hallo zusammen,

Auf einem Server hab ich ein Plugin gesehen, auf dem man in den Chat ein einfaches "/money" schreibt, um 16000$ zubekommen. Seit über 2 Std suche ich nun, aber ich finde nichts.
Kennt dass von euch einer, und könnte mir einen Link geben?

Danke :wink:

Torge 11-01-2012 11:55

Re: Suche ein Money Plugin
 
War jetzt zu faul um danach zu suchen:

PHP Code:

#include <amxmodx>
#include <cstrike>

#define VERSION        "0.1"

public plugin_init()
{
    
register_plugin("Money"VERSION"Justin");
    
    
register_clcmd("say /money""clcmd_money");
}

public 
clcmd_money(id)
{
    if (
is_user_alive(id))
    {
        
cs_set_user_money(id16000);
        
        
client_print(idprint_chat"[AMXX] You got 16000 cash!");
    }
    else
    {
        
client_print(idprint_chat"[AMXX] You need to be alive to execute this command.");
        
        return 
PLUGIN_HANDLED;
    }
    
    return 
PLUGIN_CONTINUE;


Wenn du's in deutsch willst, sag bescheid.

bibu 11-01-2012 12:25

Re: Suche ein Money Plugin
 
->

PHP Code:

public clcmd_money(id)
{
        
cs_set_user_money(id16000);
        
        
client_print(idprint_chat"[AMXX] You got $16000.");

        return 
PLUGIN_HANDLED;



MaestroMichi 11-02-2012 06:09

Re: Suche ein Money Plugin
 
Danke schonmal, leider kann ich es nicht compilen ..

"Your plugin failed to compile! (Via the "AMX Mod X 1.8.1" compiler)"

"Could not locate output file money.amx (compile failed)."

bibu 11-02-2012 12:07

Re: Suche ein Money Plugin
 
Mach es hier:

http://www.amxmodx.org/webcompiler.cgi

MaestroMichi 11-02-2012 12:47

Re: Suche ein Money Plugin
 
1 Attachment(s)
Sorry, aber selbiges wieder .. Funktioniert nicht

Torge 11-02-2012 13:22

Re: Suche ein Money Plugin
 
Klingt bisschen blöd, hast du einen Compiler auf deinem Server ?

bibu 11-02-2012 15:12

Re: Suche ein Money Plugin
 
Du hast einfach nicht den ganzen Code kopiert. Musst noch ein } am Schluss hinzufügen.


All times are GMT -4. The time now is 18:12.

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