Beiträge von HoodBoyZ
-
-
Zitat
new Float:Rate;
Rate = (GetPVarInt(playerid,"Kills") / GetPVarInt(playerid,"Tode"));Probiers mal mit :
new Float:Rate;
Rate = (GetPVarInt(playerid,"Kills")new Float:Rate;
Rate= (GetPVarInt(playerid,"Tode")); -
Hänchen mit Pommes , Kroketten undsow
-
if(dtc_AutohausCat[playerid] != 2000)
{
new autohaus = dtc_AutohausCat[playerid];
new AhCars;
for(new ah = 0; ah < sizeof(dtcKaufliste);ah++)
{
if(dtcKaufliste[ah][dtc_Autohaus] == autohaus)
{
AhCars ++;
}
}
if(newkeys == KEY_ANALOG_RIGHT || newkeys == KEY_LOOK_RIGHT || newkeys == KEY_FIRE) //right (4 Numpad/e)
{
new carid = dtc_AutohausCar[playerid] +1;
if(carid >= AhCars)
{
carid = 0;
}
new car,preis,counter;
for(new ah = 0; ah < sizeof(dtcKaufliste);ah++)
{
if(dtcKaufliste[ah][dtc_Autohaus] == autohaus)
{
if( counter == carid)
{
car = dtcKaufliste[ah][dtc_CarModel];
preis = dtcKaufliste[ah][dtc_CarPreis];
}
counter ++;
}
}
new c1 = random(120);
new c2 = random(120);
DestroyVehicle(dtc_AutohausSCar[playerid]);
dtc_AutohausSCar[playerid] = CreateVehicle(car, DtcSonstiges[autohaus][1][0],DtcSonstiges[autohaus][1][1],DtcSonstiges[autohaus][1][2],DtcSonstiges[autohaus][1][3],c1,c2,-1);
SetVehicleVirtualWorld(dtc_AutohausSCar[playerid],55+playerid);
new string[246];
TextDrawHideForPlayer(playerid,CarKauf[playerid]);
TextDrawDestroy(CarKauf[playerid]);
format(string,sizeof(string),"~r~---------- AUTOHAUS ----------~n~~g~Fahrzeug: ~w~%s~n~~g~Preis: ~w~€%d~n~~b~Auswaehlen:~n~~w~ <Num 4<~b~&~w~>Num 6> ~n~~b~Kaufen:~w~ Enter ~n~~b~Abbrechen:~w~ Tab",CarName[car-400],preis);
CarKauf[playerid] = TextDrawCreate(200,310,string);
TextDrawAlignment(CarKauf[playerid],1);
TextDrawUseBox(CarKauf[playerid],1);
TextDrawBoxColor(CarKauf[playerid],0x000000FF);
TextDrawBackgroundColor(CarKauf[playerid],COLOR_BLACK);
TextDrawSetOutline(CarKauf[playerid],1);
TextDrawFont(CarKauf[playerid], 2);
//TextDrawSetProportional(CarKauf[playerid], 2);
TextDrawTextSize(CarKauf[playerid],450,410);
TextDrawShowForPlayer(playerid,CarKauf[playerid]);
dtc_AutohausCar[playerid] = carid;
}
if(newkeys == KEY_ANALOG_LEFT || newkeys == KEY_LOOK_LEFT || newkeys == KEY_JUMP) //left (6 Numpad/q)
{
new carid = dtc_AutohausCar[playerid] -1;
if(carid < 0)
{
carid = AhCars;
}
new car,preis,counter;
for(new ah = 0; ah < sizeof(dtcKaufliste);ah++)
{
if(dtcKaufliste[ah][dtc_Autohaus] == autohaus)
{
if( counter == carid)
{
car = dtcKaufliste[ah][dtc_CarModel];
preis = dtcKaufliste[ah][dtc_CarPreis];
}
counter ++;
}
}
new c1 = random(120);
new c2 = random(120);
DestroyVehicle(dtc_AutohausSCar[playerid]);
dtc_AutohausSCar[playerid] = CreateVehicle(car, DtcSonstiges[autohaus][1][0],DtcSonstiges[autohaus][1][1],DtcSonstiges[autohaus][1][2],DtcSonstiges[autohaus][1][3],c1,c2,-1);
SetVehicleVirtualWorld(dtc_AutohausSCar[playerid],55+playerid);
new string[246];
TextDrawHideForPlayer(playerid,CarKauf[playerid]);
TextDrawDestroy(CarKauf[playerid]);
format(string,sizeof(string),"~r~---------- AUTOHAUS ----------~n~~g~Fahrzeug: ~w~%s~n~~g~Preis: ~w~€%d~n~~b~Auswaehlen:~n~~w~ <Num 4<~b~&~w~>Num 6> ~n~~b~Kaufen:~w~ Enter ~n~~b~Abbrechen:~w~ Tab",CarName[car-400],preis);
CarKauf[playerid] = TextDrawCreate(200,310,string);
TextDrawAlignment(CarKauf[playerid],1);
TextDrawUseBox(CarKauf[playerid],1);
TextDrawBoxColor(CarKauf[playerid],0x000000FF);
TextDrawSetOutline(CarKauf[playerid],1);
TextDrawBackgroundColor(CarKauf[playerid],COLOR_BLACK);
TextDrawFont(CarKauf[playerid], 2);
//TextDrawSetProportional(CarKauf[playerid], 2);
TextDrawTextSize(CarKauf[playerid],450,410);
TextDrawShowForPlayer(playerid,CarKauf[playerid]);
dtc_AutohausCar[playerid] = carid;
}
if(newkeys == 16)//Enter
{
new carid = dtc_AutohausCar[playerid];
new car,preis,counter;
for(new ah = 0; ah < sizeof(dtcKaufliste);ah++)
{
if(dtcKaufliste[ah][dtc_Autohaus] == autohaus)
{
if( counter == carid)
{
car = dtcKaufliste[ah][dtc_CarModel];
preis = dtcKaufliste[ah][dtc_CarPreis];
}
counter ++;
}
}
if(GetPlayerMoney(playerid) < preis)
{
SendClientMessage(playerid,COLOR_GREY,"Du hast nicht genug Geld um dieses Fahrzeug zu kaufen!");
return 1;
}
DestroyVehicle(dtc_AutohausSCar[playerid]);
SetPlayerPos(playerid, DtcSonstiges[autohaus][4][0],DtcSonstiges[autohaus][4][1],DtcSonstiges[autohaus][4][2]);
SetPlayerFacingAngle(playerid,DtcSonstiges[autohaus][4][3]);
dtc_AutohausCar[playerid] = 0;
dtc_AutohausCat[playerid] = 2000;
SetPlayerVirtualWorld(playerid,0);
TextDrawHideForPlayer(playerid,CarKauf[playerid]);
TextDrawDestroy(CarKauf[playerid]);
TogglePlayerControllable(playerid,1);
SetCameraBehindPlayer(playerid);
OnPlayerBuyCar(playerid,car,preis,autohaus);
//ResetPlayer
}
if(newkeys == KEY_ACTION) //Tab
{
//ResetPlayer
DestroyVehicle(dtc_AutohausSCar[playerid]);
SetPlayerPos(playerid, DtcSonstiges[autohaus][4][0],DtcSonstiges[autohaus][4][1],DtcSonstiges[autohaus][4][2]);
SetPlayerFacingAngle(playerid,DtcSonstiges[autohaus][4][3]);
dtc_AutohausCar[playerid] = 0;
dtc_AutohausCat[playerid] = 2000;
SetPlayerVirtualWorld(playerid,0);
TextDrawHideForPlayer(playerid,CarKauf[playerid]);
TextDrawDestroy(CarKauf[playerid]);
TogglePlayerControllable(playerid,1);
SetCameraBehindPlayer(playerid);
}
} -
SetPlayerCameraPos(playerid, DtcSonstiges[x][2][0],DtcSonstiges[x][2][1],DtcSonstiges[x][2][2]);
SetPlayerCameraLookAt(playerid, DtcSonstiges[x][1][0],DtcSonstiges[x][1][1],DtcSonstiges[x][1][2]);
dtc_AutohausSCar[playerid] = CreateVehicle(car, DtcSonstiges[x][1][0],DtcSonstiges[x][1][1],DtcSonstiges[x][1][2],DtcSonstiges[x][1][3],c1,c2,-1);
SetPlayerPos(playerid, DtcSonstiges[x][3][0],DtcSonstiges[x][3][1],DtcSonstiges[x][3][2]);
SetVehicleVirtualWorld(dtc_AutohausSCar[playerid],55+playerid);
format(string,sizeof(string),"~r~---------- AUTOHAUS ----------~n~~g~Fahrzeug: ~w~%s~n~~g~Preis: ~w~€%d~n~~b~Auswaehlen:~n~~w~ <Num 4<~b~&~w~>Num 6> ~n~~b~Kaufen:~w~ Enter ~n~~b~Abbrechen:~w~ Tab",CarName[car-400],preis);
if(!CarKauf[playerid])
{
CarKauf[playerid] = TextDrawCreate(200,310,string);
TextDrawAlignment(CarKauf[playerid],1);
TextDrawUseBox(CarKauf[playerid],1);
TextDrawBoxColor(CarKauf[playerid],0x000000FF);
TextDrawSetOutline(CarKauf[playerid],1);
TextDrawBackgroundColor(CarKauf[playerid],COLOR_BLACK);
TextDrawSetOutline(CarKauf[playerid],1);
TextDrawFont(CarKauf[playerid], 2);
//TextDrawSetProportional(CarKauf[playerid], 2);
TextDrawTextSize(CarKauf[playerid],450,410);
TextDrawShowForPlayer(playerid,CarKauf[playerid]);
}
else
{
TextDrawHideForPlayer(playerid,CarKauf[playerid]);
TextDrawSetString(CarKauf[playerid],string);
TextDrawShowForPlayer(playerid,CarKauf[playerid]);
}
}
else if(PlayerToPoint(1.5, playerid, DtcSonstiges[x][0][0],DtcSonstiges[x][0][1],DtcSonstiges[x][0][2]) && Dtc_PlayerHaveCar[playerid][Dtc_PlayerKey[playerid]] || pickupid == Dtc_Info[x] && Dtc_PlayerHaveCar[playerid][Dtc_PlayerKey[playerid]])
{
new mv = MaxVeh;
if(mv > 1)
{
SendClientMessage(playerid, COLOR_GREY, " Du besitzt schon ein Fahrzeug mit deinem Ausgewählten Schlüssel !");
SendClientMessage(playerid, COLOR_GREY, " Verkaufe es mit /carsell oder wechsel den Schlüssel mit /carkey !");
}
else
{
SendClientMessage(playerid, COLOR_GREY, " Du besitzt schon ein Fahrzeug! Verkaufe es mit /carsell");
}
}
}Meinst du das ?
-
Wie oben in der Überschrifft scohn erwähnt , das Geld wird nicht abgezogen ..
Wie kann ich das wieder normal hinkriegen das Geld abgezogen wird ?
Was wollt ihr für Zeilen haben ? :o -
Lade dir das neueste sscanf Plugin herunter o.o
-
Ich empfehle dir den SA-MP Map Construktion
Kannst auch mit MeD und MTA Mappen -
Spanien / Kroatien 50 %
Deutschland 50 % -
Ist das ein GF also Die Sieben Zwerge Script ?
-
-
-
Könnte mir jemand helfen ?
.pwn Datei : http://www.workupload.com/file/6ArhaHk
Dort könnt ihr ja nach den Errors Suchen .
Wäre sehr dankbar wenn mir jemand hilft !
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(13) : error 017: undefined symbol "MAX_PLAYER_NAME"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(20) : error 017: undefined symbol "MAX_PLAYERS"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(125) : error 055: start of function body without function header
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(126) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(128) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(134) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(141) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(408) : error 017: undefined symbol "mysql_query"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(417) : error 017: undefined symbol "mysql_query"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(429) : error 017: undefined symbol "mysql_GetInt"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(430) : error 017: undefined symbol "mysql_GetInt"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(431) : error 017: undefined symbol "mysql_GetInt"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(432) : error 017: undefined symbol "mysql_GetInt"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(453) : error 021: symbol already defined: "SavePlayer"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase14 Errors
-
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(13) : error 017: undefined symbol "MAX_PLAYER_NAME"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(20) : error 017: undefined symbol "MAX_PLAYERS"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(109) : error 055: start of function body without function header
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(110) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(112) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(118) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(125) : error 010: invalid function or declaration
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(315) : error 017: undefined symbol "CreateAccount"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(339) : error 017: undefined symbol "mysql_ReturnPasswort"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(342) : error 017: undefined symbol "LoadPlayer"
C:\Users\PAWN Scripting\Desktop\Script\gamemodes\Untitled.pwn(384) : warning 203: symbol is never used: "SpielerInfo"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase10 Errors.
Könnte mir jemand helfen ?
.pwn Datei : http://www.workupload.com/file/6ArhaHk
Dort könnt ihr ja nach den Errors Suchen .
Wäre sehr dankbar wenn mir jemand hilft !
-
Hallo liebe Community ,
da ich heute wieder angefangen habe zu Scripten nach einjähriger Pause , blieb ich direkt beim Scripten des Register Login und Tutorial Bereich stecken und ballerte mir 13 Errors ins Script nach stundenlangem Ausklammern etc. fing ich von vorne an .. Videos auf YouTube finde ich sinnlos da mich sowas nicht erreicht .
Könnte mir bitte jemand so etwas tolles Scripten oder einfuegen das ich in Zukunft weiß wie ich es machen soll ?
ihr würdet Selbstverständlich im copyrig stehen und dürftet euch die .pwn behalten -
[Folgendes muss im Thema enthalten sein und darf nicht entfernt werden:]
______
Unverbindlicher Hinweis: Die Sicherheit einer Transaktion kann am besten durch die Einschaltung eines Mittelsmannes gewährleistet werden. Weitere Informationen dazu gibt es hier.
Hallo liebe SA:MP Forum ,
da mein alter Sponsor mir vorhin gekündigt hat Suche ich einen neuen Sponsor .
Ich und mein Scripter sitzen momentan sozusagen auf der Straßen da wir keinen Root mehr haben .
Wir hatten grade die wieder Eröffnung geplant .. Naja das wird wohl nichts auser einer kann uns Helfen.
Wir haben derzeit ein komplettes Selfmade und arbeiteten hart daran weiter , anstannt von dem Sponsor
eine MySQL Datenbankaccount zu bekommen kündigte er uns.
Naja wir bieten dem Sponsor einen Ehrenplatz sowie Donator und wenn möglich einen hohen Platz im Team.
Wir besitzen wie gesagt ein Selfmade , .de Domain , WBB3 Forum .
Ich würde mich auf Rückmeldung freuen .
Skype : thekidswantstechno
Mit freundlichen Grüßen
x.Rain