ja da steht was von löschen und das neue rein und bei der anderen auch die zeile löschen dann soll es gehen naja ich teste ma
du hast mich aufjedenfallf weiter gebracht als andere danke dir dafür
Beiträge von Natron
-
-
private _compatibleItems = _weapon call BIS_fnc_compatibleItems; //Fetch all compatible Items for the weapons.
private _compatibleItems = _weapon call CBA_fnc_compatibleItems; //Fetch all compatible Items for the weapons.so richtig also dann geht es ?
-
okay das hatte ich schonma bekommen.
Alos muss ich
BIS_fnc_compatibleItems
zu
CBA_fnc_compatibleItemsumschreiben und das mache ich wo
-
Ich würde da auch die Finger von lassen.
Such dir lieber hier in Deutschland/Eu ein Käufer. -
Was müsste ich dir den raussuchen viele sagen das es ein bekannter bug sei und man was umschreiben muss aber keiner sagt wo könntes du mir da helfen ?
-
Ja aber wie kann es am shop liegen wenn er ohne diesen (§)"§ mod geht..
das ist zuma ufregen gibt es nicht mods ohne cba3 wir wollen ja eig nur tfr benutzen -
ja das sind aber eig nur kleidungs mods alle erzählen das es
am script liegt und verbuggt sei aber ohne cba geht ja alles.. -.-
https://github.com/AsYetUntitl…ShopSelection.sqf#L53-L80 -
mach mal im case 3 am ende vor der letzten
}
print("Ich werde aufgerufen....");bzw vor dem
if(PlayerInfo[playerid][pLevel] < 0) -
Guten Morgen.
Ich wollte gerne in unseren Arma 3 Server, CBA_3 rein machen, doch leider buggen dann unsere Waffenshops.
Man kann alles kaufen ausser Zubehör wie Visiere usw..
Woran kann das liegen, finde auch keine lösung dazu ist das ein neuer arma update bug? -
Dir ist das glaube ich garnicht bewusst, aber was Du von dir gibst ist schwachsinn!!
Maps bzw. die Objekte gehören nicht Dir, sondern R* und T2, von daher gibt es das Wort "Illegal" nicht, wenn es um Maps geht.
Zumal Du theoretisch die Objekte Illegal nutzt, das sie nicht dir gehören.
Du kannst ja mal zum Anwalt oder zu den Cops gehen, erzähl ihnen das mal, ich glaube die werden dich auslachenDas kann man auch abkürzen..
sobald man was weiter gibt, tritt man automatisch schon seine rechte ab..
-
Dann Google mal oder frag in Werkstätten nach die an vw reparieren.Bei Vertragspartner heißt es ja immer es gibt nix besseres aufm Markt.
Aber glaub da mal nicht dran
Such dir nen Job beim adac dann weißt du was deutsche Qualität geworden ist.Mimimimi
So ist das leben aber dein Mimimi hier macht es leider nicht besser -.- -
Da ich es gestern testen durfte,
Kann ich nur positiv sagen das sich dammit noch was cooles in samp machen lässt -
30k zeilen?!?!!!
was ist den da 200€ wert zudem das es schon mehrmals verkauft wurde und somit kein einzelstück mehr ist -
Ich sage nur noch das zum VW streit.
Externer Inhalt www.youtube.comInhalte 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. -
Ich warte auf den Tag wo Leute mal merken was vw eigentlich für ein Schrott baut.
Betrügen Kunden und trotzdem kauft jeder son Müll
So ein Müll habe ich schon lange nicht mehr gelesen...
Es ist leider immer das es schwarze schafe gibt, aber gleich eine ganze Marke runter zu machen ist unsinn! -
https://dracoblue.net/downloads/dini/
versuch das mal aber ich glaub er das was an dein script da blockt..
Ich habe es grade in ein leeren Script getestet und dort ging es auch. -
/*
* Dini 1.6
* (c) Copyright 2006-2008 by DracoBlue
*
* @author : DracoBlue (http://dracoblue.com)
* @date : 13th May 2006
* @update : 16th Sep 2008
*
* This file is provided as is (no warranties).
*
* It's released under the terms of MIT.
*
* Feel free to use it, a little message in
* about box is honouring thing, isn't it?
*
*/#if defined _dini_included
#endinput
#endif#define _dini_included
#pragma library dini#if defined MAX_STRING
#define DINI_MAX_STRING MAX_STRING
#else
#define DINI_MAX_STRING 255
#endifstock dini_Exists(filename[]) {
return fexist(filename);
}stock dini_Remove(filename[]) {
return fremove(filename);
}stock dini_Create(filename[]) {
if (fexist(filename)) return false;
new File:fhnd;
fhnd=fopen(filename,io_write);
if (fhnd) {
fclose(fhnd);
return true;
}
return false;
}stock dini_Set(filename[],key[],value[]) {
// If we have no key, it can't be set
// we also have no chance to set the value, if all together is bigger then the max string
new key_length = strlen(key);
new value_length = strlen(value);
if (key_length==0 || key_length+value_length+2>DINI_MAX_STRING) return false;
new File:fohnd, File:fwhnd;
new tmpres[DINI_MAX_STRING];
new bool:wasset=false;
// Let's remove the old *.part file if there was one.
format(tmpres,sizeof(tmpres),"%s.part",filename);
fremove(tmpres);
// We'll open the source file.
fohnd=fopen(filename,io_read);
if (!fohnd) return false;
fwhnd=fopen(tmpres,io_write);
if (!fwhnd) {
// we can't open the second file for writing, so .. let's close the open one and exit.
fclose(fohnd);
return false;
}
while (fread(fohnd,tmpres)) {
if (
!wasset
&& tmpres[key_length]=='='
&& !strcmp(tmpres, key, true, key_length)
) {
// We've got what needs to be replaced!
format(tmpres,sizeof(tmpres),"%s=%s",key,value);
wasset=true;
} else {
DINI_StripNewLine(tmpres);
}
fwrite(fwhnd,tmpres);
fwrite(fwhnd,"\r\n");
}if (!wasset) {
format(tmpres,sizeof(tmpres),"%s=%s",key,value);
fwrite(fwhnd,tmpres);
fwrite(fwhnd,"\r\n");
}fclose(fohnd);
fclose(fwhnd);format(tmpres,sizeof(tmpres),"%s.part",filename);
if (DINI_fcopytextfile(tmpres,filename)) {
return fremove(tmpres);
}
return false;
}stock dini_IntSet(filename[],key[],value) {
new valuestring[DINI_MAX_STRING];
format(valuestring,DINI_MAX_STRING,"%d",value);
return dini_Set(filename,key,valuestring);
}stock dini_Int(filename[],key[]) {
return strval(dini_Get(filename,key));
}stock dini_FloatSet(filename[],key[],Float:value) {
new valuestring[DINI_MAX_STRING];
format(valuestring,DINI_MAX_STRING,"%f",value);
return dini_Set(filename,key,valuestring);
}stock Float:dini_Float(filename[],key[]) {
return floatstr(dini_Get(filename,key));
}stock dini_Bool(filename[],key[]) {
return strval(dini_Get(filename,key));
}stock dini_BoolSet(filename[],key[],value) {
if (value) {
return dini_Set(filename,key,"1");
}
return dini_Set(filename,key,"0");
}stock dini_Unset(filename[],key[]) {
// If we have no key, it can't be set
// we also have no chance to unset the key, if all together is bigger then the max string
new key_length = strlen(key);
if (key_length==0 || key_length+2>DINI_MAX_STRING) return false;
new File:fohnd, File:fwhnd;
new tmpres[DINI_MAX_STRING];
// Let's remove the old *.part file if there was one.
format(tmpres,DINI_MAX_STRING,"%s.part",filename);
fremove(tmpres);
// We'll open the source file.
fohnd=fopen(filename,io_read);
if (!fohnd) return false;
fwhnd=fopen(tmpres,io_write);
if (!fwhnd) {
// we can't open the second file for writing, so .. let's close the open one and exit.
fclose(fohnd);
return false;
}
while (fread(fohnd,tmpres)) {
if (
tmpres[key_length]=='='
&& !strcmp(tmpres, key, true, key_length)
) {
// We've got what needs to be removed!
} else {
DINI_StripNewLine(tmpres);
fwrite(fwhnd,tmpres);
fwrite(fwhnd,"\r\n");
}
}
fclose(fohnd);
fclose(fwhnd);format(tmpres,DINI_MAX_STRING,"%s.part",filename);
if (DINI_fcopytextfile(tmpres,filename)) {
return fremove(tmpres);
}
return false;
}stock dini_Get(filename[],key[]) {
new tmpres[DINI_MAX_STRING];
new key_length = strlen(key);
if (key_length==0 || key_length+2>DINI_MAX_STRING) return tmpres;
new File:fohnd;
fohnd=fopen(filename,io_read);
if (!fohnd) return tmpres;
while (fread(fohnd,tmpres)) {
if (
tmpres[key_length]=='='
&& !strcmp(tmpres, key, true, key_length)
) {
/* We've got what we need */
DINI_StripNewLine(tmpres);
strmid(tmpres, tmpres, key_length + 1, strlen(tmpres), DINI_MAX_STRING);
fclose(fohnd);
return tmpres;
}
}
fclose(fohnd);
return tmpres;
}stock dini_Isset(filename[],key[]) {
new key_length = strlen(key);
if (key_length==0 || key_length+2>DINI_MAX_STRING) return false;
new File:fohnd;
fohnd=fopen(filename,io_read);
if (!fohnd) return false;
new tmpres[DINI_MAX_STRING];
while (fread(fohnd,tmpres)) {
if (
tmpres[key_length]=='='
&& !strcmp(tmpres, key, true, key_length)
) {
// We've got what we need
fclose(fohnd);
return true;
}
}
fclose(fohnd);
return false;
}stock DINI_StripNewLine(string[]) {
new len = strlen(string);
if (string[0]==0) return ;
if ((string[len - 1] == '\n') || (string[len - 1] == '\r')) {
string[len - 1] = 0;
if (string[0]==0) return ;
if ((string[len - 2] == '\n') || (string[len - 2] == '\r')) string[len - 2] = 0;
}
}stock DINI_fcopytextfile(oldname[],newname[]) {
new File:ohnd,File:nhnd;
if (!fexist(oldname)) return false;
ohnd=fopen(oldname,io_read);
if (!ohnd) return false;
nhnd=fopen(newname,io_write);
if (!nhnd) {
fclose(ohnd);
return false;
}
new tmpres[DINI_MAX_STRING];
while (fread(ohnd,tmpres)) {
DINI_StripNewLine(tmpres);
format(tmpres,sizeof(tmpres),"%s\r\n",tmpres);
fwrite(nhnd,tmpres);
}
fclose(ohnd);
fclose(nhnd);
return true;
}
versuch mal -
Ich habe es gefixt es lag daran das er mysql r39 hat und nicht mysql_static geladen hatte
-
Darum geht's mir nicht, möchte ihm eher was anbieten
Und was ?
-
Nein nur unter Linux oder Windows.