nemértem mi a hiba? mit kellene tenni?
cash = CreatePickup(1212,3,x,y,z);cash2 = CreatePickup(1212,3,x+1,y,z);cash3 = CreatePickup(1212,3,x-1,y,z);cash4 = CreatePickup(1212,3,x,y+1,z);cash5 = CreatePickup(1212,3,x,y-1,z); }[/quote]Persze törlés sehol, na mindegy, aztán ott az OnPlayerPickUpPickup ahol minden egyes létrehozott pickuphoz tartozik egy $100 pénz adás akkor mit kell csodálkozni azon hogy akármelyiket veszi fel akkor ad 100 dollárt?Ez alapján csak az a kérése van hogy grove-ban adja a pénzt, törölni kell az összes többi pickupot csak egyet kell meghagyni.Írd le érthetõbben mi a b* akarsz, írd le mi is lenne a lényege akkor használhatóbb válaszokat fogsz kapni.
Szóval akkor kell egy deleteobjectes parancs? mert letöltésnél azt írta hogy alapból benne van de tényleg nincs.
Megpróbáltam bemásolni de csa kwarnokat kaptam.Ez a scriptbeli Pickup:[pawn]public OnPlayerPickUpPickup(playerid, pickupid){ if(pickupid == cash){ GivePlayerMoney(playerid,100); //this is the money the player gets by harvesting money pickup} else if(pickupid == cash2){ GivePlayerMoney(playerid,100); //this is the money the player gets by harvesting money pickup} else if(pickupid == cash3){ GivePlayerMoney(playerid,100); //this is the money the player gets by harvesting money pickup} else if(pickupid == cash4){ GivePlayerMoney(playerid,100); //this is the money the player gets by harvesting money pickup} else if(pickupid == cash5){ GivePlayerMoney(playerid,100); //this is the money the player gets by harvesting money pickup} return 1;}[/pawn]