PPC házból kilépéskor nem tölt objektet, megfagy. Please Help Me!

Indította Zsoca02, 2012. június 21. - 18:53:30

Előző téma - Következő téma

Zsoca02

Sziasztok!
Olyan problémám lenne, hogy van egy olyan PPC modom, amit már máskor használtam, tökéletes volt, de most, hogy újból elõvettem, kipróbáltam, de nem mûködik rendesen. Bemegyek a házamba, és utána kijövök, de miután kilépek a házból nem írja ki, hogy objektek betöltése, és nem is tölt be, nem tudok semerre mozogni, kamerát forgatni, minden parancsot ismeretlennek ad ki. Régebben 0.3d-vel használtam, most elõször 0.3e-vel, majd 0.3d-vel is próbáltam, de semmi változás. Próbáltam scriptek nélkül is, hátha valamelyikkel összeakad, de nem.
Legyetek szívesek, segítsetek!

instant


Zsoca02

Idézetet írta: ZzzzzZ date=1340343722\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"23189\" data-ipsquote-contentclass=\"forums_Topicbelépés elõtt jó volt?
 
Igen. Elõtte minden. Még a housemenu-ben is tudok mindent csinálni, csak ha az exit house-ra megyek, akkor kirak a házból, de ott megfagy.

ZyZu.


Zsoca02

Idézetet írta: ZyZu date=1340345140\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"23189\" data-ipsquote-contentclass=\"forums_Topickéne az a parancs.. és segítennék!  :)
 
Mármint milyen parancs?

instant

zsoca másold be a dialogresponse alatti részt ami a ház rendszerrel kapcsolatos vagy azt a részt ahol kilépsz a házból, ha nem látsz semmit akkor oda írd hogy : SetPlayerInterior(playerid,0);

Zsoca02

Idézetet írta: ZzzzzZ date=1340345368\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"23189\" data-ipsquote-contentclass=\"forums_Topiczsoca másold be a dialogresponse alatti részt ami a ház rendszerrel kapcsolatos vagy azt a részt ahol kilépsz a házból, ha nem látsz semmit akkor oda írd hogy : SetPlayerInterior(playerid,0);
 

House_Exit(playerid, HouseID)
{
// Set the player in the normal world again
SetPlayerVirtualWorld(playerid, 0);
SetPlayerInterior(playerid, 0);
// Set the position of the player at the entrance of his house
SetPlayerPos(playerid, AHouseData[HouseID][HouseX], AHouseData[HouseID][HouseY], AHouseData[HouseID][HouseZ]);
// Also clear the tracking-variable to track in which house the player is
APlayerData[playerid][CurrentHouse] = 0;
// Check if there is a timer-value set for exiting the house (this timer freezes the player while the environment is being loaded)
if (ExitHouseTimer > 0)
{
// Don\'t allow the player to fall
    TogglePlayerControllable(playerid, 0);
// Let the player know he\'s frozen for 5 seconds
GameTextForPlayer(playerid, TXT_ExitHouseReloadEnv, ExitHouseTimer, 4);
// Start a timer that will allow the player to fall again when the environment has loaded
SetTimerEx(\"House_ExitTimer\", ExitHouseTimer, false, \"ii\", playerid, HouseID);
}
return 1;
}
forward House_ExitTimer(playerid, HouseID);
public House_ExitTimer(playerid, HouseID)
{
// Allow the player to move again (environment should have been loaded now)
    TogglePlayerControllable(playerid, 1);
// Respawn the player\'s vehicles near the house (only the vehicles that belong to this house)
for (new CarSlot; CarSlot < 10; CarSlot++)
if (AHouseData[HouseID][VehicleIDs][CarSlot] != 0)
    SetVehicleToRespawn(AHouseData[HouseID][VehicleIDs][CarSlot]);
return 1;
}

 
Meg nem tudom, hogy ezzel segítek-e: [08:29:11] Script[gamemodes/PPC_Trucking.amx]: Run time error 19: \"File or function is not found\"[08:29:11] Script[gamemodes/PPC_Trucking.amx]: Run time error 19: \"File or function is not found\"

ZyZu.


instant

Meg nem tudom, hogy ezzel segítek-e: [08:29:11] Script[gamemodes/PPC_Trucking.amx]: Run time error 19: \"File or function is not found\"[08:29:11] Script[gamemodes/PPC_Trucking.amx]: Run time error 19: \"File or function is not found\"[/quote]
ez általában akkor szokott elõ jönni ha nincs a gamemodeban a main () {} rész vagy nincs betöltve 1 plugin.
és próbáltad oda írni a  house exit alá az object betöltönek a timerét?

Zsoca02

#9
Idézetet írta: ZyZu date=1340346088\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"23189\" data-ipsquote-contentclass=\"forums_Topicsscanf és a streamer plugin be van töltve?
 

[11:39:27] Server Plugins
[11:39:27] --------------
[11:39:27]  Loading plugin: sscanf
[11:39:27]
[11:39:27]  ===============================
[11:39:27]       sscanf plugin loaded.     
[11:39:27]    (c) 2009 Alex \"Y_Less\" Cole
[11:39:27]  ===============================
[11:39:27]   Loaded.
[11:39:27]  Loading plugin: streamer
[11:39:27]
*** Streamer Plugin v2.5.2 by Incognito loaded ***
[11:39:27]   Loaded.
[11:39:27]  Loaded 2 plugins.

 
Elvileg igen.

Dupla hozzászólás automatikusan összefûzve. ( 2012. június 22. - 08:27:22 )

ez általában akkor szokott elõ jönni ha nincs a gamemodeban a main () {} rész vagy nincs betöltve 1 plugin.
és próbáltad oda írni a  house exit alá az object betöltönek a timerét?
[/quote]
Sztem a gamemode-al nem lehet baj, mert mióta mûködött nem piszkáltam bele.

ZyZu.


Zsoca02

Idézetet írta: ZyZu date=1340346833\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"23189\" data-ipsquote-contentclass=\"forums_TopicVedd le újra.
 
Mit vegyek le újra?


Zsoca02

Idézetet írta: ZyZu date=1340347181\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"23189\" data-ipsquote-contentclass=\"forums_TopicA módot. http://users.telenet.be/vge/downloads/PPC_Trucking6.zip\" rel=\"external nofollow\">http://users.telenet.be/vge/downloads/PPC_Trucking6.zip
 
Ez megvan...van mûködõ modom, de azért akartam ezt használni, mert ez már majdnem teljesen magyar.

ZyZu.

Cseréld ki azt az inc amiben van az exit parancs és fríssísd lehet az a hibás..