Random Carid´s

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Hi Leutz,


    wie schon in der Überschrift beschrieben, suche ich nach einem System bei dem ich bestimmten Autos beim Spawnen/Respawnen immer eine unterschiedliche ID bekommen. Ich hab die SuFu bereits benutzt aba bissher nur Random Spawns und was weis ich alles.


    Kann mir jemand helfen? Bitte


    MFG
    >IGS<Keks


    MY SELFMADE GAMEMODE "NoName"

    Spoiler anzeigen


    - AccountSystem: 100%
    - LizenzenSystem: 5%
    - TelefonSystem: 5%
    - JobSystem: 3%
    - GeldSystem: 80%
    - AutoSystem: 75%
    - FahndungsSystem: [color=#ff6600]10%
    [color=#000000]- HausSystem: [color=#ff0000]0%

    [color=#000000]- GeschäftsSystem: [color=#ff0000]0%

    [color=#000000]- ZahlTag System: [color=#ff0000]0%

    [color=#000000]- WetterSystem: [color=#ff0000]0%

    [color=#000000]- AntiCheatSystem: [color=#ff0000]0%

    Spoiler anzeigen
    GameModeName: [GM]MyGamemode
    Filterscripts: None
    Benutze Includes: [Inc]MyInclude
    Voraussichtliche Fertigstellung: Unbekannt
    Voraussichtliche Servereröffnung: Unbekannt
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Sonstige Anmerkungen: Selfmade

  • also ich habs so:



    new CarSpawn[5][1] = {
    {425},
    {426},
    {427},
    {428},
    {429}
    };


    new rand = random(sizeof(CarSpawn));
    AddStaticVehicleEx(CarSpawn,x,y,z,delay);
    AddStaticVehicleEx(CarSpawn,x,y,z,delay);
    AddStaticVehicleEx(CarSpawn,x,y,z,delay);
    AddStaticVehicleEx(CarSpawn,x,y,z,delay);


    Ehrlich gesagt habe ich das mit ganze Zahlen noch nie gemacht,... sollte aber so funktionieren.



    Mfg
    Grex

  • in script eingefügt und 4 Errors bekommen


    C:\Users\Simon\Desktop\Scripts\BETA.pwn(73) : error 035: argument type mismatch (argument 1)
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(74) : error 035: argument type mismatch (argument 1)
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(75) : error 035: argument type mismatch (argument 1)
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(76) : error 035: argument type mismatch (argument 1)
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(54) : warning 204: symbol is assigned a value that is never used: "rand"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    4 Errors.


    PS: Isch benutze kein GF oda sonst sowas


    MY SELFMADE GAMEMODE "NoName"

    Spoiler anzeigen


    - AccountSystem: 100%
    - LizenzenSystem: 5%
    - TelefonSystem: 5%
    - JobSystem: 3%
    - GeldSystem: 80%
    - AutoSystem: 75%
    - FahndungsSystem: [color=#ff6600]10%
    [color=#000000]- HausSystem: [color=#ff0000]0%

    [color=#000000]- GeschäftsSystem: [color=#ff0000]0%

    [color=#000000]- ZahlTag System: [color=#ff0000]0%

    [color=#000000]- WetterSystem: [color=#ff0000]0%

    [color=#000000]- AntiCheatSystem: [color=#ff0000]0%

    Spoiler anzeigen
    GameModeName: [GM]MyGamemode
    Filterscripts: None
    Benutze Includes: [Inc]MyInclude
    Voraussichtliche Fertigstellung: Unbekannt
    Voraussichtliche Servereröffnung: Unbekannt
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Sonstige Anmerkungen: Selfmade


  • new rand = random(sizeof(CarSpawn));


    zu



    new rand2 = random(sizeof(CarSpawn));


    PS: hat doch keiner behauptet :D


    EDIT, muss dann so aussehen:



    new rand2 = random(sizeof(CarSpawn));
    AddStaticVehicleEx(CarSpawn[rand][1], 324.7664,2546.0984,16.4876,178.8663,-1,-1,1800);


    Hatte mich vertan mit CarSpawn also hatte das Rand vergessen ^^


    San Andreas [Fun]RealLife
    [ TOOL ] Grex's RCON Tool
    "Zwei Dinge sind unendlich, das Universum und die menschliche Dummheit, aber bei dem Universum bin ich mir noch nicht ganz sicher" - Albert Einstein

    2 Mal editiert, zuletzt von Grex ()

  • ebenfalls 4 errors :(


    C:\Users\Simon\Desktop\Scripts\BETA.pwn(73) : error 017: undefined symbol "rand"
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(74) : error 017: undefined symbol "rand"
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(75) : error 017: undefined symbol "rand"
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(76) : error 017: undefined symbol "rand"
    C:\Users\Simon\Desktop\Scripts\BETA.pwn(61) : warning 204: symbol is assigned a value that is never used: "rand2"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    4 Errors.


    MY SELFMADE GAMEMODE "NoName"

    Spoiler anzeigen


    - AccountSystem: 100%
    - LizenzenSystem: 5%
    - TelefonSystem: 5%
    - JobSystem: 3%
    - GeldSystem: 80%
    - AutoSystem: 75%
    - FahndungsSystem: [color=#ff6600]10%
    [color=#000000]- HausSystem: [color=#ff0000]0%

    [color=#000000]- GeschäftsSystem: [color=#ff0000]0%

    [color=#000000]- ZahlTag System: [color=#ff0000]0%

    [color=#000000]- WetterSystem: [color=#ff0000]0%

    [color=#000000]- AntiCheatSystem: [color=#ff0000]0%

    Spoiler anzeigen
    GameModeName: [GM]MyGamemode
    Filterscripts: None
    Benutze Includes: [Inc]MyInclude
    Voraussichtliche Fertigstellung: Unbekannt
    Voraussichtliche Servereröffnung: Unbekannt
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Sonstige Anmerkungen: Selfmade

  • @ thekeks
    is mir viel zu kompliziert aba danke


    @ BlackFoX
    so ungefähr hatte ich das auch schon und jetzt hab ich es nochma so wie du geschrieben hast probiert. aba da spawnt (so wie du gemacht hast id 411) und nur das nix anderes :(


    MY SELFMADE GAMEMODE "NoName"

    Spoiler anzeigen


    - AccountSystem: 100%
    - LizenzenSystem: 5%
    - TelefonSystem: 5%
    - JobSystem: 3%
    - GeldSystem: 80%
    - AutoSystem: 75%
    - FahndungsSystem: [color=#ff6600]10%
    [color=#000000]- HausSystem: [color=#ff0000]0%

    [color=#000000]- GeschäftsSystem: [color=#ff0000]0%

    [color=#000000]- ZahlTag System: [color=#ff0000]0%

    [color=#000000]- WetterSystem: [color=#ff0000]0%

    [color=#000000]- AntiCheatSystem: [color=#ff0000]0%

    Spoiler anzeigen
    GameModeName: [GM]MyGamemode
    Filterscripts: None
    Benutze Includes: [Inc]MyInclude
    Voraussichtliche Fertigstellung: Unbekannt
    Voraussichtliche Servereröffnung: Unbekannt
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Sonstige Anmerkungen: Selfmade

    Einmal editiert, zuletzt von SmArTi ()

  • Dann musst du dein Respawn anders einstellen, das machst du am besten so:
    Oben:
    new randomspawnveh;
    new CarSpawns[3][] = {410,411,600};
    forward RandVehicleRespawn(vehicleid);
    OnGameModeInit:
    new randoms = random(3);
    randomspawnveh = AddStaticVehicle(CarSpawns[randoms][0],0.0,0.0,0.0,0.0,0,0);
    SetTimerEx("RandVehicleRespawn",Respawn_Delay,1,"d",randomspawnveh);
    Callback RandVehicleRespawn:
    public RandVehicleRespawn(vehicleid)
    {
    DestroyVehicle(randomspawnveh);
    new randoms = random(3);
    randomspawnveh = AddStaticVehicle(CarSpawns[randoms][0],0.0,0.0,0.0,0.0,0,0);
    }


    Jetzt ist aber leider nicht dafür gesorgt, dass auch eine andere Idee da steht, wenn es geschrottet wird ^^

  • C:\Users\Simon\Desktop\Scripts\BETA.pwn(74) : error 017: undefined symbol "Respawn_Delay"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    1 Error.


    MY SELFMADE GAMEMODE "NoName"

    Spoiler anzeigen


    - AccountSystem: 100%
    - LizenzenSystem: 5%
    - TelefonSystem: 5%
    - JobSystem: 3%
    - GeldSystem: 80%
    - AutoSystem: 75%
    - FahndungsSystem: [color=#ff6600]10%
    [color=#000000]- HausSystem: [color=#ff0000]0%

    [color=#000000]- GeschäftsSystem: [color=#ff0000]0%

    [color=#000000]- ZahlTag System: [color=#ff0000]0%

    [color=#000000]- WetterSystem: [color=#ff0000]0%

    [color=#000000]- AntiCheatSystem: [color=#ff0000]0%

    Spoiler anzeigen
    GameModeName: [GM]MyGamemode
    Filterscripts: None
    Benutze Includes: [Inc]MyInclude
    Voraussichtliche Fertigstellung: Unbekannt
    Voraussichtliche Servereröffnung: Unbekannt
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Voraussichtliche Veröffentlichung des Scripts: Wahrscheinlich NIE
    Sonstige Anmerkungen: Selfmade