Beiträge von Tommyx3
-
-
-
Ich bräuchte unbedingt mal nen Premium Zugang ...
dann kauf dir einen...
-
-
Nützlich für zum bsp /timeban oder auch für die dauer des Donater Ranges:
stock GetSecondsByTimeString(string[], type[4]="hms", bool:ignorecase=true) //bsp: 45h32m10s oder 1y30m5d
{
new time=0, var[32], years, months, days, hours, mins, secs, pos;
if(!strcmp(type, "hms", ignorecase)) //bsp: 5h30m15s (5 Stunden & 30 Minuten & 15 Sekunden)
{
for (new i, l = strlen(string); i != l; i++)
{
if(string[i] == 'h' || (ignorecase && string[i] == 'H'))
{
strmid(var, string, 0, i);
hours = strval(var)*3600;
pos = i;
continue;
}
if(string[i] == 'm' || (ignorecase && string[i] == 'M'))
{
strmid(var, string, pos+1, i);
mins = strval(var)*60;
pos = i;
continue;
}
if(string[i] == 's' || (ignorecase && string[i] == 'S'))
{
strmid(var, string, pos+1, i);
secs = strval(var);
pos = i;
continue;
}
}
time = hours+mins+secs;
}
else if(!strcmp(type, "ymd", ignorecase)) //bsp: 5y6m12d (5 Jahre & 6 Monate & 12 Tage)
{
for (new i, l = strlen(string); i != l; i++)
{
if(string[i] == 'y' || (ignorecase && string[i] == 'Y'))
{
strmid(var, string, 0, i);
years = strval(var)*31557600;
pos = i;
continue;
}
if(string[i] == 'm' || (ignorecase && string[i] == 'M'))
{
strmid(var, string, pos+1, i);
months = strval(var)*2629800;
pos = i;
continue;
}
if(string[i] == 'd' || (ignorecase && string[i] == 'D'))
{
strmid(var, string, pos+1, i);
days = strval(var)*86400;
pos = i;
continue;
}
}
time = years+months+days;
}
return time;
}Verwendung:
printf("%d", GetSecondsByTimeString("5h30m15s"));
printf("%d", GetSecondsByTimeString("5h30m"));
printf("%d", GetSecondsByTimeString("5h"));
printf("%d", GetSecondsByTimeString("5h15s"));
printf("%d", GetSecondsByTimeString("30m5h"));
printf("%d", GetSecondsByTimeString("5h30M15s"));
printf("%d", GetSecondsByTimeString("5y6m12d", "ymd"));
printf("%d", GetSecondsByTimeString("5y12d", "ymd")); -
Beim Steam Winter Sale:
- GTA IV
- CS:GO
- Rocket League
- The Witcher Trilogie
- One Piece: Pirate Warriors 3Überleg grad was ich noch holen könnte, endet ja schon Morgen
-
Kann es sein das #include ab zuvielen Ordnern nicht mehr richtig funktioniert? Bsp: #include "../gamefiles/modules/server/callbacks/OnGameModeInit.inc"
Aus irgendeinem Grund kommt der Inhalt nicht ins Gamemode & wenn z.b. die Datei nicht vorhanden ist kommt keine Fehlermeldung -
Zitat
This update is for SA-MP server owners only
- Adds protection against hackers who spam OnPlayerConnect messages.
- Weapon ID checking after OnPlayerWeaponShot in case the script doesn't filter it.
- Actors now default to being invulnerable (this might be needed later for a bandaid rotation fix in the client).
- Adds console variable 'conncookies' (int) to disable the 0.3.7 connection cookie system.
- Adds console variable 'cookielogging' to disable logging of connection cookies requested by newly connecting players.
- Adds SHA256_PassHash() function for hashing player passwords.SQLite stuff:
- The sqlite functions db_open and db_query now return indexes (starting at 1) instead of memory handles. That means the server tracks the memory handles internally and won't crash if invalid handles are used.
- Several extra sqlite db_* functions have been added. Please see the a_sampdb.inc for a full list.
- Adds %q to format(). %q is the same as %s although the the input will first be passed through sqlite's string escaping function.
- Adds console variable 'db_logging'. Logs sqlite db_* function errors to the main server_log.
- Adds console variable 'db_log_queries'. Logs all sqlite db_query() calls including the query string.Server variable system (SVars):
- The SVar system is the same as the PVars, although the variables created are server-wide, not attached to any playerid, and persist through gamemode changes. -
Ich möchte nur anzweifeln, das die Xbox die dann erkennt bzw nutzen kann, wenn die mit dem Secure scheiß ausgeliefert wird.Wozu brauch ich die überhaupt - als ob jemand einbricht und die Platten klaut...
Tommyx3: - danke, leider hat auch die Verschlüsselung
Das Programm ist glaub ich auf der Festplatte, da ich sie auf ext4 formatiert habe (linux) ist die glaube nicht mehr drauf, musst die garnicht benutzen -
Hat jemand eine gute externe Festplatte ?
Ansprüche:
USB 3.0
min 256 GB Speicher (2 TB sollten reichen)
min 7.200 rpmam liebsten von WD - aber im grunde ist's egal - soll an meiner Xbox One laufen
http://www.amazon.de/gp/aw/d/B…ID=31Qwn80v5QL&ref=plSrch diese hab ich Zuhause -
Sony Xperia Z3
-
-
Zitat
Dieses Feature, entwickelt von Pain123/Maddinat0r, ist dazu da, das Scripting für Leute zu vereinfachen, die einfach nur tolle Sachen scripten wollen anstatt sich um die SQL-Syntax und andere MySQL-spezifische Sachen sorgen zu machen. Das heißt, dass das ganze MySQL-Zeugs (von Query erstellen bis zur Ergebnisverarbeitung) vom Plugin übernommen wird.
-
Bin eigentlich nicht ein fan von gebrauchten Sachen, neu wäre mir lieber.. Und zum Spielen hol ich mir ne PS4 wäre aber gut wenn er gta sa packen würde
-
Hay möchte mir evtl. Einen Laptop kaufen da ich in meinem Zimmer keinen Platz fürn Tisch habe (um einen Rechner unterzubringen) wollte fragen ob mir jemand einen empfehlen könnte. Also der sollte so 400-500€ kosten
-
Erstell eine tabelle z.b. ucp_actions , wenn du dann einen spieler aus der fraktion raus wirst mach einen eintrag in die tabelle (wenn er online ist), im gamemode machst dun timer rein der z.b alle 30s checkt ob es einträge in der tabelle vorhanden sind wenn ja dann z.b jz aus der fraktion werfen und dann den eintrag noch löschen..
Mit Handy geschrieben
-
http://forum.sa-mp.com/showthread.php?t=268499
Lies dir das mal durch :p -
Benutz doch einfach SetPlayerColor(playerid, farbe);
-
Such mal im Playstore nach Smart App Lock (Protector)
-