wo hast du das GTA SA Installiert, C:/Programme, oder hast ne Externe Festplatte was weis ich :D?
Beiträge von PsyDom42O
-
-
Hast du GTA SA Überhaupt schon Installiert? -
Ja bau halt die /oooc Funktioniert und /noooc Funktion nicht ein, fertig

if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Du bist nicht eingeloggt!");
return 1;
}
if ((noooc) && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_YELLOW, "Der OOC Channel wurde von einem Admin deaktiviert!");
return 1;
}
if(PlayerInfo[playerid][pMuted] == 1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "Du kannst nicht schreiben, weil du stummgeschaltet bist!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Verwendung: (/o)oc [text]");
return 1;
}
format(string, sizeof(string), "(( %s: %s ))", sendername, result);
OOCOff(COLOR_OOC,string);
printf("%s", string);
}
return 1;
} -
Yap Nates Design ist Besser, und hat nicht so ner Langweilige Farbe..
-
if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Du bist nicht eingeloggt!");
return 1;
}
if ((noooc) && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_YELLOW, "Der OOC Channel wurde von einem Admin deaktiviert!");
return 1;
}
if(PlayerInfo[playerid][pMuted] == 1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "Du kannst nicht schreiben, weil du stummgeschaltet bist!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Verwendung: (/o)oc [text]");
return 1;
}
format(string, sizeof(string), "(( %s: %s ))", sendername, result);
OOCOff(COLOR_OOC,string);
printf("%s", string);
}
return 1;
}
if(strcmp(cmd, "/noooc", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] >= 3 && (!noooc))
{
noooc = 1;
SendClientMessage(playerid, COLOR_YELLOW, "Der OOC Channel wurde von einem Admin deaktiviert!");
}
else if (PlayerInfo[playerid][pAdmin] >= 3 && (noooc))
{
noooc = 0;
BroadCast(COLOR_YELLOW, "Der OOC Channel wurde von einem Admin aktiviert!");
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, "Dir ist es nicht erlaubt diesen Befehl zu benutzen!");
}
}
return 1;
} -
Immer auch "Ja" und "Ok" und "Installieren" klicken ohman..
bei dem Bild musst du denn Pfad angeben wo es hin installiert werden muss in dem Fall Rockstar / GTA San Andreas
/e, Du suchst eine Fahrschule Ja ok, Gemappte, gescriptet was nun?
-
Ich dachte GF's darf man nicht verkaufen?
-
Sowas kann man doch auch als Schleich Werbung Nutzen ;D?
Also wenn es ums Stunten geht bin ich dabei
-
public repair()
{
for(new playerid=0; playerid<MAX_PLAYERS; playerid++)
{
if(IsPlayerConnected(playerid))
{
new Float:health, cid;
if (IsPlayerInAnyVehicle(playerid))
{
cid = GetPlayerVehicleID(playerid);
GetVehicleHealth(cid, health);
if (health < 900)
{
SetVehicleHealth(cid,1000);
GameTextForPlayer(playerid, "Auto Repariert!",2000,5);
return 1;
} -
Das die Lichter aus der wand kommen ist Richtig gut für 1 Jahr lang Map Erfahrung..
-
Xdd, wie geil das Video :D:D
-
Übelst Geil sowas habe ich noch nie gesehen-.-*
-
Ja map mir nen Tor da du es haben willst...
-
Alles anzeigen
Unter Showroom kannste die nen Gamemode ziehen und dir denn Cmds raus kopieren oder so..
if(strcmp(cmd, "/setskin", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "Hilfe : /setskin [playerid/PartOfName] [skin model]");
return 1;
}
new playa;
new health;
playa = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
health = strvalEx(tmp);
if (PlayerInfo[playerid][pAdmin] >= 4)
{
if(IsPlayerConnected(playa))
{
if(playa != INVALID_PLAYER_ID)
{
new name[20];
new victim[20];
GetPlayerName(playerid, name, sizeof(name));
GetPlayerName(playa, victim, sizeof(victim));
PlayerInfo[playa][pModel] = health;
PlayerInfo[playa][pChar] = health;
SetPlayerSkin(playa, PlayerInfo[playa][pChar]);
format(string, 256, "AdmWarning: [%s] Skin wurde auf Skin ID: %d von %s gesezt.",victim,health,name);
ABroadCast(COLOR_YELLOW,string,1347);
}
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " Du darfst diesen CMD nicht nutzen,schäm dich!");
}
}
return 1;
} -
Unter Showroom kannste die nen Gamemode ziehen und dir denn Cmds raus kopieren oder so..
if(strcmp(cmd, "/setskin", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "Hilfe : /setskin [playerid/PartOfName] [skin model]");
return 1;
}
new playa;
new health;
playa = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
health = strvalEx(tmp);
if (PlayerInfo[playerid][pAdmin] >= 4)
{
if(IsPlayerConnected(playa))
{
if(playa != INVALID_PLAYER_ID)
{
new name[20];
new victim[20];
GetPlayerName(playerid, name, sizeof(name));
GetPlayerName(playa, victim, sizeof(victim));
PlayerInfo[playa][pModel] = health;
PlayerInfo[playa][pChar] = health;
SetPlayerSkin(playa, PlayerInfo[playa][pChar]);
format(string, 256, "AdmWarning: [%s] Skin wurde auf Skin ID: %d von %s gesezt.",victim,health,name);
ABroadCast(COLOR_YELLOW,string,1347);
}
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " Du darfst diesen CMD nicht nutzen,schäm dich!");
}
}
return 1;
} -
Welches Script hast du denn, also Gamemode? die meisten befehle lauten via /setskin ID (SkinID) oder /asetskin ID SkinID
-
so ne Admin basic ist sowas von Sinnlos da die Admins sowieso "falls Rl server" nur am suppporten sind, oder Tv'en und wenn dann einfach /gotolv und da stört euch keiner Autos kann man sich kaufen

Wenn du die base mappst scripte ich für dich das Tor und das Icon..
-
Und noch Etwas:
Es stimmt zwar dass es ein Wettbewerb ist, aber wenn die anderen "Teilnehmer" nicht rechtzeitig fertig geworden sind ist es doch ihr Pech oder nicht?
N a t e ist rechtzeitig fertig geworden und hat somit als Einziger den Termin eingehalten.
Wieso also von einem Wettbewerb sprechen wenn es Niemand schafft sein Werk rechtzeitig fertigzustellen?Genau so läuft ein Wettbewerb ab egal wie gut die anderen aussehen, also ich finde das von Nate recht gut.
-
}
else
{
SendClientMessage(playerid, COLOR_GREY, "Du befindest dich nicht in der Nähe eines Autos.");
}
}
else
{
new vid = GetPlayerVehicleID(playerid);
new szString[32];Mach mal die rote klammer weg..
//E es muss nicht immer am Schluss liegen bei mir war das mal wo ich auch 2 Klammern ohne bewusst hin gestellt habe^^
}
else
{
SendClientMessage(playerid, COLOR_GREY, "Du befindest dich nicht in der Nähe eines Autos.");
}
else
{
new vid = GetPlayerVehicleID(playerid);
new szString[32]; -
Public Carinfo(playerid)
{
if(!IsPlayerInAnyVehicle(playerid))
{
new vid = GetNearestCar(playerid, 3.0);
if(vid!=INVALID_CAR)
{
new szString[32];
format(szString,sizeof(szString), "Carid: %d",vid);
format(szString,sizeof(szString), "Besitzer: %s",CarInfo[vid][cOwner]);
format(szString, sizeof(szString), "Kennzeichen: %s", CarInfo[vid][cKennzeichen]);
if(CarInfo[vid][cType]==POLIZEI) format(szString, sizeof(szString), "Firma: Polizei");
else if(CarInfo[vid][cType]==TAXI) format(szString, sizeof(szString), "Firma: Taxi");
else if(CarInfo[vid][cType]==FAHRSCHULE) format(szString, sizeof(szString), "Firma: Fahrschule");
else if(CarInfo[vid][cType]==FLUGSCHULE) format(szString, sizeof(szString), "Firma: Flugschule");
else if(CarInfo[vid][cType]==ADAC) format(szString, sizeof(szString), "Firma: ADAC");
else if(CarInfo[vid][cType]==OTTO) format(szString, sizeof(szString), "Firma: Otto's Cars");
else if(CarInfo[vid][cType]==WANG) format(szString, sizeof(szString), "Firma: Wang Cars");
else if(CarInfo[vid][cType]==FEUER) format(szString, sizeof(szString), "Firma: Feuerwehr");
else if(CarInfo[vid][cType]==MEDIC) format(szString, sizeof(szString), "Firma: Krankenhaus");
else if(CarInfo[vid][cType]==TANKER) format(szString, sizeof(szString), "Firma: Oil Company");
else if(CarInfo[vid][cType]==SPEDITION) format(szString, sizeof(szString), "Firma: Spedition");
else if(CarInfo[vid][cType]==POST) format(szString, sizeof(szString), "Firma: Post");
else if(CarInfo[vid][cType]==MULL) format(szString, sizeof(szString), "Firma: Muelldeponie");
else if(CarInfo[vid][cType]==NEWS) format(szString, sizeof(szString), "Firma: Los Santos Times");
else if(CarInfo[vid][cType]==BOOT) format(szString, sizeof(szString), "Firma: Los Santos Boote");
else if(CarInfo[vid][cType]==CREED) format(szString, sizeof(szString), "Firma: Autoverleih");
else if(CarInfo[vid][cType]==HELISHOP) format(szString, sizeof(szString), "Firma: Heli / Flugzeugshop");
else if(CarInfo[vid][cType]==BANKER) format(szString, sizeof(szString), "Firma: Bank");
else if(CarInfo[vid][cType]==RUSSIAN) format(szString, sizeof(szString), "Firma: RUSSIAN Mafia");
else if(CarInfo[vid][cType]==MOPED) format(szString, sizeof(szString), "Firma: Motorradshop");
else if(CarInfo[vid][cType]==YAKUZA) format(szString, sizeof(szString), "Firma: Yakuza's");
else if(CarInfo[vid][cType]==TRIAD) format(szString, sizeof(szString), "Firma: Triaden");
else if(CarInfo[vid][cType]==AUTOLIEFERER)format(szString, sizeof(szString), "Firma: Autolieferung");
else if(CarInfo[vid][cType]==PARKHAUS) format(szString, sizeof(szString), "Firma: Parkhaus");
else if(CarInfo[vid][cType]==BIKER) format(szString, sizeof(szString), "Firma: Biker"); // BIKER
else if(CarInfo[vid][cType]==Wasser) format(szString, sizeof(szString), "Firma: WasserGrenzSchutz"); // BIKER
else if(CarInfo[vid][cType]==GROTTI) format(szString, sizeof(szString), "Firma: GrottiCars");
else if(CarInfo[vid][cType]==shody) format(szString, sizeof(szString), "Firma: ShodysCars");
else format(szString, sizeof(szString), "Firma: Keine");
}
else
{
SendClientMessage(playerid, COLOR_GREY, "Du befindest dich nicht in der Nähe eines Autos.");
}
}
else
{
new vid = GetPlayerVehicleID(playerid);
new szString[32];
format(szString,sizeof(szString), "Carid: %d",vid);
format(szString,sizeof(szString), "Besitzer: %s",CarInfo[vid][cOwner]);
format(szString, sizeof(szString), "Kennzeichen: %s", CarInfo[vid][cKennzeichen]);
if(CarInfo[vid][cType]==POLIZEI) format(szString, sizeof(szString), "Firma: Polizei");
else if(CarInfo[vid][cType]==TAXI) format(szString, sizeof(szString), "Firma: Taxi");
else if(CarInfo[vid][cType]==FAHRSCHULE) format(szString, sizeof(szString), "Firma: Fahrschule");
else if(CarInfo[vid][cType]==FLUGSCHULE) format(szString, sizeof(szString), "Firma: Flugschule");
else if(CarInfo[vid][cType]==ADAC) format(szString, sizeof(szString), "Firma: ADAC");
else if(CarInfo[vid][cType]==OTTO) format(szString, sizeof(szString), "Firma: Otto's Cars");
else if(CarInfo[vid][cType]==WANG) format(szString, sizeof(szString), "Firma: Wang Cars");
else if(CarInfo[vid][cType]==FEUER) format(szString, sizeof(szString), "Firma: Feuerwehr");
else if(CarInfo[vid][cType]==MEDIC) format(szString, sizeof(szString), "Firma: Krankenhaus");
else if(CarInfo[vid][cType]==TANKER) format(szString, sizeof(szString), "Firma: Oil Company");
else if(CarInfo[vid][cType]==SPEDITION) format(szString, sizeof(szString), "Firma: Spedition");
else if(CarInfo[vid][cType]==POST) format(szString, sizeof(szString), "Firma: Post");
else if(CarInfo[vid][cType]==MULL) format(szString, sizeof(szString), "Firma: Muelldeponie");
else if(CarInfo[vid][cType]==NEWS) format(szString, sizeof(szString), "Firma: Los Santos Times");
else if(CarInfo[vid][cType]==BOOT) format(szString, sizeof(szString), "Firma: Los Santos Boote");
else if(CarInfo[vid][cType]==CREED) format(szString, sizeof(szString), "Firma: Autoverleih");
else if(CarInfo[vid][cType]==HELISHOP) format(szString, sizeof(szString), "Firma: Heli / Flugzeugshop");
else if(CarInfo[vid][cType]==BANKER) format(szString, sizeof(szString), "Firma: Bank");
else if(CarInfo[vid][cType]==RUSSIAN) format(szString, sizeof(szString), "Firma: RUSSIAN");
else if(CarInfo[vid][cType]==MOPED) format(szString, sizeof(szString), "Firma: Motorradshop");
else if(CarInfo[vid][cType]==YAKUZA) format(szString, sizeof(szString), "Firma: Yakuza's");
else if(CarInfo[vid][cType]==TRIAD) format(szString, sizeof(szString), "Firma: Triaden");
else if(CarInfo[vid][cType]==AUTOLIEFERER)format(szString, sizeof(szString), "Firma: Autolieferung");
else if(CarInfo[vid][cType]==PARKHAUS) format(szString, sizeof(szString), "Firma: Parkhaus");
else if(CarInfo[vid][cType]==BIKER) format(szString, sizeof(szString), "Firma: Biker"); // Biker
else if(CarInfo[vid][cType]==Wasser) format(szString, sizeof(szString), "Firma: Wasser");
else if(CarInfo[vid][cType]==GROTTI) format(szString, sizeof(szString), "Firma: GrottiCars");
else if(CarInfo[vid][cType]==shody) format(szString, sizeof(szString), "Firma: ShodysCars");
else format(szString, sizeof(szString), "Firma: Keine");
ShowPlayerDialog(playerid, DIALOG_STYLE_MSGBOX, 0, "CarInfo's", szString, "Fertig", "Weiter");
return 1;
}
}
}
}Versuch halt mal mehre zu machen, Groß und klein schreibung zählt das dazu zu einem Crash?