Beiträge von Silentgate

    So, da wärs dann auch schon
    Irgendwie kann Imageshack kein Transparent darstellen :D
    Edit: Keine Ahnung warum dadrin solche "Flecken" gelandet sind, werds nochmal schnell überarbeiten!


    Edit2: Hier nun die neue Version



    Das schwarze ist nur auf dem kleinen Bild schwarz! Sobald ihr das Bild auf imageshack.us anschaut ist es durchsichtig!

    Also, damit dir sowas nicht nochmal passiert schreibe dir ein Shell Script bzw. nehm das hier. (Ich hoffe du nutzt Linux ;) )


    Spoiler anzeigen
    #! /bin/bash

    Spoiler anzeigen
    ############################*
    # Configuration (Required):
    #

    Spoiler anzeigen
    # |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    # |~~ 1. SYSTEM PARAMETERS ~~~~~~~~~~|
    # |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|

    Spoiler anzeigen
    # ~~ Params: Existing user on your system
    SYS_USER="root";

    Spoiler anzeigen
    # ~~ Description: Path to the root directory of the server
    # ~~ Params: System path
    SYS_DIR="/srv/ORDNER NAME/";

    Spoiler anzeigen
    # ~~ Description: Server daemon
    # ~~ Default Value: srcds_run
    SYS_DAEMON="samp02Xsvr";

    Spoiler anzeigen
    # ~~ Description: Name of the server on your system
    SYS_NAME="System Name";

    Spoiler anzeigen
    # ~~ Description: Description of the server
    SYS_DESC="Beschreibung was es ist";

    Spoiler anzeigen
    #
    # CONFIGURATION END
    ############################*

    Spoiler anzeigen
    # ~~~ DON'T EDIT ANYTHING BELOW THIS LINE - ACCEPT YOU KNOW WHAT YOU ARE DOING ~~~

    Spoiler anzeigen
    ############################*
    # STARTSCRIPT CORE START
    #

    Spoiler anzeigen
    echo "| INFORMATION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|";
    echo "| Last Update: 14-03-2009 |";
    echo "|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|";

    Spoiler anzeigen
    # ~~ Assembly start parameters
    PARAMS="";

    Spoiler anzeigen
    # ~~ Check awk package
    if [ ! -x /usr/bin/awk ]; then
    echo "~~> Error >> Starscript cannot be used";
    echo "~~> Reason >> AWK seems to be not installed";
    echo "~~> Solution >> Install the Linux package 'screen'";
    exit 1;
    fi;

    Spoiler anzeigen
    # ~~ Check screen package
    if [ ! -x /usr/bin/screen ]; then
    echo "~~> Error >> Starscript cannot be used";
    echo "~~> Reason >> Screen seems to be not installed";
    echo "~~> Solution >> Install the Linux package 'screen'";
    exit 1;
    fi;

    Spoiler anzeigen
    # ~~ Get mode (Root/Nonroot)
    if [ `whoami` = root ]; then
    usagetype=root;
    else
    usagetype=nonroot;
    fi;

    Spoiler anzeigen
    # ~~ Start function
    start()
    {
    if [ ! -d $SYS_DIR ]; then
    echo "~~> Fehler >> Server konnte nicht gestartet werden";
    echo "~~> Grund >> Der Ordner $SYS_DIR existiert nicht";
    echo "~~> Lösung >> Bitte überprüfen sie die Startscript Konfiguration";
    exit 1;
    fi;

    Spoiler anzeigen
    if [ ! -x $SYS_DIR/$SYS_DAEMON ]; then
    echo "~~> Fehler >> Server konnte nicht gestartet werden";
    echo "~~> Grund >> Entweder is das Script nicht ausführbar oder die Konfiguration ist fehlerhaft";
    echo "~~> Lösung >> 1. chmod u + x $SYS_DIR$SYS_DAEMON 2. Überprüfen sie die Startscript Configration";
    exit 1;
    fi;

    Spoiler anzeigen
    if status; then
    echo "~~> Error >> Server ist bereits gestartet";
    echo "~~> Reason >> Bereits gestartet";
    echo "~~> Solution >> Den Server stoppen";
    exit 1;
    fi;

    Spoiler anzeigen
    case "$usagetype" in
    root)
    su - $SYS_USER -c "cd $SYS_DIR ; screen -AmdS $SYS_NAME ./$SYS_DAEMON $PARAMS";
    ;;
    nonroot)
    cd $SYS_DIR ; screen -AmdS $SYS_NAME ./$SYS_DAEMON $PARAMS;
    ;;
    esac
    }

    Spoiler anzeigen
    # ~~ Stop function
    stop ()
    {
    if ! status; then
    echo "~~> Error >> Server konnte nicht gefunden werden";
    echo "~~> Reason >> Der Server konnte nicht gestartet werden";
    echo "~~> Solution >> Starten sie den Server";
    exit 1;
    fi;

    Spoiler anzeigen
    case "$usagetype" in
    root)
    tmp=$(su - $SYS_USER -c "screen -ls" | awk -F . "\$2 ~ /^$SYS_NAME[[:space:]].*/ {print \$1}" | awk '{print $1}');
    su - $SYS_USER -c "screen -r $SYS_NAME -X exit"
    ;;
    nonroot)
    screen -r $(screen -ls | awk -F . "\$2 ~ /^$SYS_NAME[[:space:]].*/ {print \$1}" | awk '{print $1}') -X exit;
    ;;
    esac;
    }

    Spoiler anzeigen
    # ~~ Status function
    status ()
    {
    case "$usagetype" in
    root)
    su - $SYS_USER -c "screen -ls" | grep [.]$SYS_NAME[[:space:]] > /dev/null
    ;;
    nonroot)
    screen -ls | grep [.]$SYS_NAME[[:space:]] > /dev/null
    ;;
    esac
    }

    Spoiler anzeigen
    # ~~ Watch function
    watch () {
    if ! status;
    then echo "$SYS_DESC $SYS_NAME could not be found. Probably not running."; exit 1; fi

    Spoiler anzeigen
    case "$usagetype" in
    root)
    tmp=$(su - $SYS_USER -c "screen -ls" | awk -F . "\$2 ~ /^$SYS_NAME[[:space:]].*/ {print \$1}" | awk '{print $1}')
    # ~~ su - $SYS_USER -c "screen -r $tmp"
    su $SYS_USER -c "screen -r $SYS_NAME"
    ;;
    nonroot)
    screen -r $(screen -ls | awk -F . "\$2 ~ /^$SYS_NAME[[:space:]].*/ {print \$1}" | awk '{print $1}')
    ;;
    esac
    }

    Spoiler anzeigen
    # ~~ Autorestarter
    watch_auto ()
    {
    if ! status;
    then start
    echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
    date
    echo "~~~> $SYS_NAME Auto-Restarted <~~~"
    echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
    fi

    Spoiler anzeigen
    # then echo " ~~> Server Restarted <~~ "; exit 1; fi

    Spoiler anzeigen
    case "$1" in

    Spoiler anzeigen
    autorestart)
    echo "~~> Action >> Autorestart Script after 25sec";
    while true; do watch_auto; sleep 25; done
    ;;

    Spoiler anzeigen
    start)
    echo "~~> Action >> Starting $SYS_NAME ($SYS_DESC)";
    start
    echo "~~> Success >> Server is started";
    ;;

    Spoiler anzeigen
    stop)
    echo "~~> Action >> Stopping $SYS_NAME ($SYS_DESC)";
    stop
    echo "~~> Success >> Server is stopped";
    ;;

    Spoiler anzeigen
    restart)
    echo "~~> Action >> Restrating $SYS_NAME ($SYS_DESC)";
    status && stop
    start
    echo "~~> Success >> Server is restarted";
    ;;

    Spoiler anzeigen
    status)
    if status; then
    echo "~~> Info >> The server is online : $SYS_NAME ($SYS_DESC)";
    else
    echo "~~> Info >> The server is offline : $SYS_NAME ($SYS_DESC)";
    fi;
    ;;
    watch)
    watch
    ;;

    Spoiler anzeigen
    *)
    echo "~~> Usage >> $0 {start|stop|status|restart|watch|autorestart}";
    echo " >> While watching press ctrl-a, ctrl-d to stop watching without stopping the server.";
    exit 1;
    ;;

    Spoiler anzeigen
    esac
    #
    # STARTSCRIPT CORE END
    ############################*


    Für Windows nimmst das hier


    Spoiler anzeigen
    title SAMP Server starten

    Spoiler anzeigen
    set $pfad=0

    Spoiler anzeigen
    :: Hier die Pfade einstellen ;)
    if exist C:\PFAD EINSTELLEN (set $pfad=C:\EINSTELLEN)

    Spoiler anzeigen
    if exist C:\"PFAD EINSTELLEN (set $pfad=C:\"DAS GLEICHE)

    Spoiler anzeigen
    if "%$pfad%"=="0" goto no_server

    Spoiler anzeigen
    (qprocess > find SAMP Server.exe >NUL) || start %$pfad%
    goto end

    Spoiler anzeigen
    :no_server
    echo SAMP Server nicht gefunden, bitte Manuell starten
    pause
    goto end

    Spoiler anzeigen
    :end
    set $pfad=

    Erstmal dein Adapter/Kabel: http://www.amazon.de/S-ATA-IDE…-2in1-Kabel/dp/B000V3PY02


    Und ob der läuft guckst du in dieser Liste.


    AMD Phenom II X4 805-940 (Deneb), AMD Phenom II X3 710-720 (Heka), AMD Phenom X4 9100e-9750 (Agena), AMD Phenom X3 8400-8650 (Toliman), AMD Athlon X2 7750+ (Kuma), AMD Athlon X2 BE2300-BE2400 und 4050e-4850e (Brisbane), AMD Athlon 64 X2 3600+-6400+ (Windsor, Brisbane), AMD Athlon 64 FX-62 (Windsor FX), AMD Athlon 64 3000+-4000+ und LE1600-LE1640 (Orleans, Lima), AMD Sempron X2 2100+-2200+ (Brisbane), AMD Sempron LE1100-LE1300 (Lima, Sparta), AMD Sempron 2800+-3800+ (Manila), AMD Opteron 1210

    Hallo,


    ich hab ein Problem mit meinem /aufall Befehl. Wenn man sich in ein Auto setzt und schnell genug /aufall schreibt dann kann man dieses Fahrzeug klauen. Ich möchte aber das dies nicht mehr funktioniert.
    Also, wenn ich jetzt an ein Auto gehen würde, das die Tür zu ist, so würd ichs gern haben.


    Hier stand mal was

    Das hier ist drin
    forward PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z);


    Die ganze sachen mit "radius pdls_gate, usw..." habe ich mit #Define drin
    //Definitionen für die Gates
    // Los Santos PD Gate
    #define radius_pdls_gate 25.0
    #define coords_pdls_gate_x 1547.188843
    #define coords_pdls_gate_y -1642.849487
    #define coords_pdls_gate_z 14.099655
    #define speed_pdls_gate 5
    // San Fierro PD Gate
    #define radius_pdsf_gate 25.0
    #define coords_pdsf_gate_x -1571.564331
    #define coords_pdsf_gate_y 658.912109
    #define coords_pdsf_gate_z 6.349410
    #define speed_pdsf_gate 5
    // Las Venturas PD Gate
    #define radius_pdlv_gate 25.0
    #define coords_pdlv_gate_x 2237.098145
    #define coords_pdlv_gate_y 2457.347168
    #define coords_pdlv_gate_z 6.349410
    #define speed_pdlv_gate 5
    // Las Venturas Parkhaus Gate 1
    #define radius_park_gate1 25.0
    #define coords_park_gate1_x 2314.987549
    #define coords_park_gate1_y 1926.643311
    #define coords_park_gate1_z 4.273161
    #define speed_park_gate1 5
    // Las Venturas Parkhaus Gate 2
    #define radius_park_gate2 25.0
    #define coords_park_gate2_x 2322.959961
    #define coords_park_gate2_y 1926.695190
    #define coords_park_gate2_z 4.279316
    #define speed_park_gate2 5
    // Los Santos S.W.A.T. Gate 1
    #define radius_swat_gate1 10.0
    #define coords_swat_gate1_x 1269.671875
    #define coords_swat_gate1_y -1842.162842
    #define coords_swat_gate1_z 15.170761
    #define speed_swat_gate1 5
    // Los Santos S.W.A.T. Gate 2
    #define radius_swat_gate2 10.0
    #define coords_swat_gate2_x 1213.191772
    #define coords_swat_gate2_y -1842.149414
    #define coords_swat_gate2_z 15.156204
    #define speed_swat_gate2 5
    // Ende der Definitionen für die Gates

    Hab ein etwas ärgerliches Problemchen mit PlayerToPoint....


    Das ganze ist mit
    public PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z)
    {
    if(IsPlayerConnected(playerid))
    {
    new Float:oldposx, Float:oldposy, Float:oldposz;
    new Float:tempposx, Float:tempposy, Float:tempposz;
    GetPlayerPos(playerid, oldposx, oldposy, oldposz);
    tempposx = (oldposx -x);
    tempposy = (oldposy -y);
    tempposz = (oldposz -z);
    //printf("DEBUG: X:%f Y:%f Z:%f",posx,posy,posz);
    if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
    {
    return 1;
    }
    }
    return 0;
    } definiert.


    Die Fehlermeldung ist diese hier:

    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(231) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(234) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(237) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(240) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(243) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(246) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(249) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(252) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(255) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(258) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(261) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(264) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(267) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(270) : error 010: invalid function or declaration
    C:\Dokumente und Einstellungen\Daniel\Desktop\Filterscripts -\Gates2.pwn(273) : error 010: invalid function or declaration
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    15 Errors.


    Und dies ist der Teil wo die Fehlermeldungen kommen


    /*
    ####################
    #### Funktionen ####
    ####################
    */


    for(new i=0;i>MAX_PLAYERS;i++)


    /* #### Police Department Los Santos Open #### */
    if (PlayerToPoint(radius_pdls_gate, i, coords_pdls_gate_x, coords_pdls_gate_y, coords_pdls_gate_z)){
    MoveObject(pdls_gate,1547.188843, -1642.849487, 14.099655,speed_pdls_gate);}
    /* #### Police Department Los Santos Close #### */
    if (PlayerToPoint(radius_pdls_gate, i, coords_pdls_gate_x, coords_pdls_gate_y, coords_pdls_gate_z)){
    MoveObject(pdls_gate,1547.213867, -1627.848999, 14.099655,speed_pdls_gate);}
    /* #### Police Department San Fierro Open #### */
    if (PlayerToPoint(radius_pdsf_gate, i, coords_pdsf_gate_x, coords_pdsf_gate_y, coords_pdsf_gate_z)){
    MoveObject(pdsf_gate,-1571.564331, 665.585815, 6.349410,speed_pdsf_gate);}
    /* #### Police Department San Fierro Close #### */
    if (PlayerToPoint(radius_pdsf_gate, i, coords_pdsf_gate_x, coords_pdsf_gate_y, coords_pdsf_gate_z)){
    MoveObject(odsf_gate,-1571.564331, 665.585815, 6.349410,speed_pdsf_gate);}
    /* #### Police Department Las Venturas Open #### */
    if (PlayerToPoint(radius_pdlv_gate, i, coords_pdlv_gate_x, coords_pdlv_gate_y, coords_pdlv_gate_z)){
    MoveObject(pdlv_gate,2237.098145, 2449.073242, 9.940882,speed_pdlv_gate);}
    /* #### Police Department Las Venturas Close #### */
    if (PlayerToPoint(radius_pdlv_gate, i, coords_pdlv_gate_x, coords_pdlv_gate_y, coords_pdlv_gate_z)){
    MoveObject(pdlv_gate,2237.098145, 2449.073242, 9.940882,speed_pdlv_gate);}
    /* #### Parkhaus Gate 1 + 2 Open #### */
    if (PlayerToPoint(radius_park_gate1, i, coords_park_gate1_x, coords_park_gate1_y, coords_park_gate1_z)){
    MoveObject(park_gate1,2307.463623, 1926.643311, 4.273161,speed_park_gate1);}
    // ----------------
    if (PlayerToPoint(radius_park_gate2, i, coords_park_gate2_x, coords_park_gate2_y, coords_park_gate2_z)){
    MoveObject(park_gate2,2329.909180, 1926.695190, 4.279316,speed_park_gate2);}
    /* #### Parkhaus Gate 1 +2 Close #### */
    if (PlayerToPoint(radius_park_gate1, i, coords_park_gate1_x, coords_park_gate1_y, coords_park_gate1_z)){
    MoveObject(admin_park_gate1,2314.4626, 1926.643311, 4.273161,speed_park_gate1);}
    //-----------------
    if (PlayerToPoint(radius_park_gate2, i, coords_park_gate2_x, coords_park_gate2_y, coords_park_gate2_z)){
    MoveObject(admin_park_gate2,2322.459961, 1926.695190, 4.279316,speed_park_gate2);}
    /* #### S.W.A.T. Los Santos Open Gate 1 #### */
    if (PlayerToPoint(radius_swat_gate1, i, coords_swat_gate1_x, coords_swat_gate1_y, coords_swat_gate1_z)){
    MoveObject(swat_gate1,1259.821289, -1842.162842, 15.170761,speed_swat_gate1);}
    /* #### S.W.A.T. Los Santos Close Gate1 #### */
    if (PlayerToPoint(radius_swat_gate1, i, coords_swat_gate1_x, coords_swat_gate1_y, coords_swat_gate1_z)){
    MoveObject(swat_gate1,1259.821289, -1842.162842, 15.170761,speed_swat_gate1);}
    /* #### S.W.A.T. Los Santos Open Gate 2 #### */
    if (PlayerToPoint(radius_swat_gate2, i, coords_swat_gate2_x, coords_swat_gate2_y, coords_swat_gate2_z)){
    MoveObject(swat_gate2,1203.516602, -1842.149414, 15.156204,speed_swat_gate2);}
    /* #### S.W.A.T. Los Santos Close Gate 2 #### */
    if (PlayerToPoint(radius_swat_gate2, i, coords_swat_gate2_x, coords_swat_gate2_y, coords_swat_gate2_z)){
    MoveObject(swat_gate2,1213.291870, -1842.149414, 15.156204,speed_swat_gate2);}


    Vielleicht weiss einer Rat. (Aber bitte auch an welcher Stelle der Fehler liegt und nicht nur berichtigt zurückschreiben)

    Hmm, danke schon mal, aber wenn ich es jetzt Compilen will, dann kommt das hier:


    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(37) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(42) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(47) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(52) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(57) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(62) : warning 206: redundant test: constant expression is non-zero
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    6 Warnings.

    Hi, hab mir mal dieses Filterscript zusammengeschrieben und es funktioniert nicht ganz so, wie gewünscht.


    #include <a_samp>


    #pragma tabsize 0
    #define COLOR_YELLOW 0xFFFF00AA
    #define FILTERSCRIPT
    #define PlayerToPoint
    #if defined FILTERSCRIPT
    new pdls_gate;
    new pdsf_gate;
    new pdlv_gate;



    public OnFilterScriptInit()
    {
    pdls_gate = CreateObject(7657, 1547.188843, -1642.849487, 14.099655, 0.0000, 0.0000, 269.7591);
    pdsf_gate = CreateObject(976, -1571.564331, 658.912109, 6.349410, 0.0000, 0.0000, 269.7591);
    pdlv_gate = CreateObject(976, 2237.098145, 2457.347168, 9.940882, 0.0000, 0.0000, 89.3814);


    print("\n-------------------");
    print("-Filterscript-Test-");
    print("-------------------\n");
    return 1;
    }


    public OnFilterScriptExit()
    {
    return 1;
    }


    #else


    #endif


    public OnPlayerCommandText(playerid, cmdtext[])
    {
    if (strcmp(cmdtext, "/pdlsclose", true) == 0){
    if (PlayerToPoint(10.0, playerid, 1547.213867, -1627.848999, 14.099655))
    MoveObject(pdls_gate,1547.213867, -1627.848999, 14.099655,5);
    return 1;
    }
    if (strcmp(cmdtext, "/pdlsopen", true) == 0){
    if (PlayerToPoint(10.0, playerid, 1547.213867, -1627.848999, 14.099655))
    MoveObject(pdls_gate,1547.188843, -1642.849487, 14.099655,5);
    return 1;
    }
    if (strcmp(cmdtext, "/pdsfclose", true) == 0){
    if (PlayerToPoint(10.0, playerid, -1571.564331, 665.585815, 6.349410))
    MoveObject(pdsf_gate,-1571.564331, 665.585815, 6.349410,5);
    return 1;
    }
    if (strcmp(cmdtext, "/pdsfopen", true) == 0){
    if (PlayerToPoint(10.0, playerid, -1571.564331, 665.585815, 6.349410))
    MoveObject(pdsf_gate, -1571.564331, 665.585815, 6.349410,5);
    return 1;
    }
    if (strcmp(cmdtext, "/pdlvclose", true) == 0){
    if (PlayerToPoint(10.0, playerid, 2237.098145, 2449.073242, 9.940882))
    MoveObject(pdlv_gate, 2237.098145, 2449.073242, 9.940882,5);
    return 1;
    }
    if (strcmp(cmdtext, "/pdlvopen", true) == 0){
    if (PlayerToPoint(10.0, playerid, 2237.098145, 2449.073242, 9.940882))
    MoveObject(pdlv_gate, 2237.098145, 2449.073242, 9.940882,5);
    return 1;
    }
    return 0;
    }


    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(37) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(42) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(47) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(52) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(57) : warning 206: redundant test: constant expression is non-zero
    C:\Dokumente und Einstellungen\Daniel\Desktop\Gates2.pwn(62) : warning 206: redundant test: constant expression is non-zero
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    6 Warnings.


    *Hilfe brauch :thumbup: *