Script = Selfmade ?

  • Hallo Leute.
    Ich habe vor einiger Zeit ein Script angefangen.
    Habe aber mir das Godfather genommen, und einige Sachen angeschaut und etwas draus gelernt.
    Beispielsweise das mit dem "arrCoords" bei Haus und Biz. ;)


    In meinem Script ist das gleiche halbwegs.
    Gilt es nun als GF oder als selfmade?


  • public LoadBiz()
    {
    new arrCoords[30][64];
    new strFromFile2[256];
    new File: file = fopen("biz.cfg", io_read);
    if (file)
    {
    new idx;
    while (idx < sizeof(BizInfo))
    {
    fread(file, strFromFile2);
    split(strFromFile2, arrCoords, ',');
    BizInfo[idx][bEntrancex] = floatstr(arrCoords[0]);
    BizInfo[idx][bEntrancey] = floatstr(arrCoords[1]);
    BizInfo[idx][bEntrancez] = floatstr(arrCoords[2]);
    BizInfo[idx][bExitx] = floatstr(arrCoords[3]);
    BizInfo[idx][bExity] = floatstr(arrCoords[4]);
    BizInfo[idx][bExitz] = floatstr(arrCoords[5]);
    strmid(BizInfo[idx][bOwner], arrCoords[6], 0, strlen(arrCoords[6]), 255);
    BizInfo[idx][bPrice] = strval(arrCoords[7]);
    BizInfo[idx][bInt] = strval(arrCoords[8]);
    BizInfo[idx][bLock] = strval(arrCoords[9]);
    BizInfo[idx][bOwned] = strval(arrCoords[10]);
    BizInfo[idx][bKasse] = strval(arrCoords[11]);
    BizInfo[idx][bLevel] = strval(arrCoords[12]);
    BizInfo[idx][bWorld] = strval(arrCoords[13]);
    BizInfo[idx][bProds] = strval(arrCoords[14]);
    BizInfo[idx][bMaxProds] = strval(arrCoords[15]);
    strmid(BizInfo[idx][bName], arrCoords[16], 0, strlen(arrCoords[16]), 255);
    BizInfo[idx][bEintritt] = strval(arrCoords[17]);
    BizInfo[idx][bProdPreis] = strval(arrCoords[18]);
    idx++;
    }
    fclose(file);
    }
    return 1;
    }


    Ist nicht direkt kopiert. ;)

  • es ist ein halbe halbe


    zählt aber noch als Selfmade ;D

  • Es ist ein Selfmade, Natürlich.
    Du hast es Selber gemacht, Lediglich die Ideen hast du dir Abgeschaut.
    Dennoch gibt es Leute die ein GF Selfmade Nennen, aber deins ist SELFMADE ;)