Beiträge von Sunny_Montana

    Könnte ich dir machen, ist eine einfache CSS Sache, da musst du nur die Pixel und die Ausrichtung richtig einstellen, ist ein wenig rumgespiele, aber geh mal in dein UCP:


    ACP->Styles->Bearbeiten->Und dann ist da irgend wo etwas mit Cascading Style Sheet


    Dort musst du nach Search Suchen und die Ausrichtung verändern.

    Soso, dein Logo ist also selber erstellt worden ja habe ich das also richtig gelesen ?


    http://www.tineye.com/search/4…567ef865c48878ba19a12c8c/


    Da hast du einmal ein Suchergebniss deiner ach so selbst erstellten Logos, ich denke dann kannst du auch eine PSD Datei nachweisen, zzumindest gehe ich davon einmal aus.


    Mein nächster Schritt ist es nun einmal Lol anzuschreiben und einmal darauf freundlich hinzuweisen das bei deiner Community der Verdacht besteth das du Bilder verwendest für die du keine Erlaubnis besitzt diese zu verwenden !.


    Lies dir das hier einmal durch bitte:


    Spoiler anzeigen
    Terms of use

    Einmal ein Feedback von mir:


    Es fehlen jegliche Credits vom ersteller der Bilder, damit verletzt du gegen das Urheberrecht


    Die Administration scheint sich für wem besseres zu halten, siehe Shoutbox:



    Allgemein ein etwas sehr chaotisches Forum, ich denke auch ein Indiz für eine nicht so helle Leitung ist das Puschen eigener Ankündigungen das noch Member gesucht werden !


    http://lol-community.net/board…ratoren-gesucht/#post7236


    Ganz ehrlich meine persönliche Meinung:


    0 / 10 im allgemeinen !

    Mich würde interessieren wo man die R7 Version herbekommt wenn die Downloadlinks doch alle down sind, kann jemand evtl. mal das plugin + include für windows und linux hochladen?
    Die r15 funktioniert nicht, da dort eine Meldung kommt das MSVCP110.dll auf dem PC fehlt.


    Benutze einfach mal Net.Framework 4.5, dann solltest du unter Windows keine Fehler mehr bekommen !

    Also das ganze funktioniert so:


    Du setzt beispielsweise die Rechte im Channeledit so, das man für Betreten den Wert 50 innehalb der Gruppe haben muss, das bedeutet das wenn eine andere Gruppe nur den Wert 40 hat, kann der Benutzer mit der Gruppe die den niedrigeren Wert hat nicht betreten.


    Das ganze stellst du bei "Power um Channel zu betreten" ein im Channel Reiter bei Rechte, ein Admin hingegen braucht dieses Recht nicht, er benötigt das Recht "Benötigt", warum das ganze so komisch und verwirrend ist kann dir wohl leider nur Teamspeak selber sagen !

    Guten Abend liebe Community Mitglieder,


    da ich im Besitz von 2 auf meinem Namen ausgestellte vBulletin Lizenzen bin, habe ich eine Lizenz davon abzugeben !


    Preislich stelle ich mir eine Lizenz ab 100€ vor, der Original Preis liegt bei 249$ pro Lizenz. Eine Rechnung ist vorhanden, die Lizenz ist bald über einem halben Jahr alt und wie gesagt, ich habe erst kürzlich eine neue Lizenz erworben diese hat mich aufgrund der App und dem FaceBook Zusatz (Das hatte ich in der alten Lizenz nicht dabei) 500$ gekostet.


    Nun ja, der Preis liegt wie gesagt bei 100€ ich kann aufgrund der hohen Lizenzkosten leider nicht tiefer gehen und biete aber auch gleichzeitig Installationshilfe und Support an. Ich bin auch noch so kulant und werde die einzelnen Funktionen im vBulletin erklären und erstelle vor dem Kauf auch gerne noch eine Domain wo das System ausgiebig getestet werden darf.


    Bild von der Lizenz:



    Ein Administrator erhält auch gerne eine Ausweiskopie und TeamViewer Zugang um sich von der Echtheit der Lizenz zu überzeugen !



    Demo Forum: http://www.rog-network.de/vBulletin/forum.php


    Da es sich um eine so Hohe Summe handelt, bevorzuge ich einen Trade der durch einem Administrator / Moderator als MM geführt wird. !!!



    [Folgendes muss im Thema enthalten sein und darf nicht entfernt werden:]
    ______
    Unverbindlicher Hinweis: Die Sicherheit einer Transaktion kann am besten durch die Einschaltung eines Mittelsmannes gewährleistet werden. Weitere Informationen dazu gibt es hier.

    if((newkeys == KEY_ANALOG_DOWN)&&(IsPlayerInAnyVehicle(playerid)))
    {
    new vehicleid = GetPlayerVehicleID(playerid);
    if(Motor[vehicleid] == false && IsPlayerDriver(playerid))
    {
    new engine,lights,alarm,doors,bonnet,boot,objective;
    GetVehicleParamsEx(vehicleid,engine,lights,alarm,doors,bonnet,boot,objective);
    SetVehicleParamsEx(vehicleid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
    new string[128];
    format(string,sizeof(string),"%s startet den Motor.",GetPlayerName(playerid));
    SendClientMessageInRange(playerid,string,COLOR_PURPLE,50);
    Motor[vehicleid] = true;
    return 1;
    }
    if(Motor[vehicleid] == true && IsPlayerDriver(playerid))
    {
    new engine,lights,alarm,doors,bonnet,boot,objective;
    GetVehicleParamsEx(vehicleid,engine,lights,alarm,doors,bonnet,boot,objective);
    SetVehicleParamsEx(vehicleid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
    new string[128];
    format(string,sizeof(string),"%s schaltet den Motor aus.",SpielerName(playerid));
    SendClientMessageInRange(playerid,string,COLOR_PURPLE,50);
    Motor[vehicleid] = false;
    return 1;
    }
    }


    Bekomme da noch immer diese Fehler -.-^^

    Also langsam verzweifel ich !


    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4188) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4188) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4188) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4188) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4188) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4188) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4188) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4194) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4194) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4194) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4194) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4194) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4194) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4194) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4200) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4200) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4200) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4200) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4200) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4200) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4200) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4206) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4206) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4206) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4206) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4206) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4206) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(4206) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(5269) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(5269) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(5269) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(5269) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(5269) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(5269) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(5269) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11400) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11400) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11400) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11400) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11400) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11400) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11400) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11404) : warning 202: number of arguments does not match definition
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11404) : warning 202: number of arguments does not match definition
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11411) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11411) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11411) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11411) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11411) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11411) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(11411) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12757) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12757) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12757) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12757) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12757) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12757) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12757) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12763) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12763) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12763) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12763) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12763) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12763) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12763) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12769) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12769) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12769) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12769) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12769) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12769) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12769) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12775) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12775) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12775) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12775) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12775) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12775) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(12775) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(16242) : warning 219: local variable "engine" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(16242) : warning 219: local variable "lights" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(16242) : warning 219: local variable "alarm" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(16242) : warning 219: local variable "doors" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(16242) : warning 219: local variable "bonnet" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(16242) : warning 219: local variable "boot" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(16242) : warning 219: local variable "objective" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(56918) : warning 219: local variable "string" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(59371) : warning 203: symbol is never used: "farbe"
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(62676) : warning 219: local variable "SpielerName" shadows a variable at a preceding level
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(65775) : warning 203: symbol is never used: "BadWords"
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(65775) : warning 203: symbol is never used: "Locked"
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(65775) : warning 203: symbol is never used: "M_OnPlayerDeath"
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(65775) : warning 203: symbol is never used: "M_OnPlayerStateChange"
    C:\Users\Tobias\Desktop\LYL-Server\gamemodes\Life-Your-Live.pwn(65775) : warning 203: symbol is never used: "M_OnPlayerUpdate"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


    Header size: 15732 bytes
    Code size: 2705580 bytes
    Data size: 8172360 bytes
    Stack/heap size: 32768 bytes; estimated max. usage: unknown, due to recursion
    Total requirements:10926440 bytes


    94 Warnings.

    Neue Mods und Programme gekauft ! Sony Vegas Platinum 12 + Sony Vegas Pro 12


    Dazu noch einiges an Mods und Plugins, heute einfach mal ein wenig rumprobieren. Live dabei im Chat, wer Fragen, Kritik und Anregungen hat, darf sich gerne beschweren.


    http://www.twitch.tv/n00beta


    Heute wird das ganze eventuell die ganze Nacht gehen, da ich neue Erfahrungen sammeln möchte.

    Sowas hier :) Nur viel besser ;)


    Externer Inhalt www.youtube.com
    Inhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.
    Durch die Aktivierung der externen Inhalte erklären Sie sich damit einverstanden, dass personenbezogene Daten an Drittplattformen übermittelt werden. Mehr Informationen dazu haben wir in unserer Datenschutzerklärung zur Verfügung gestellt.