Egyik sem müxik : ZeRo a tied 4 hibát írt ki, Malacé hibátlan de a szerveren meg nincs ott az object. Leírtam a behelyettesített kódokat így talán könnyebb..
C:\\Documents and Settings\\user\\Asztal\\new.pwn(6) : warning 235: public function lacks forward declaration (symbol \"OnFilterScriptInit\")
C:\\Documents and Settings\\user\\Asztal\\new.pwn(7) : error 017: undefined symbol \"CreateObject\"
C:\\Documents and Settings\\user\\Asztal\\new.pwn( 8 ) : error 017: undefined symbol \"SetTimer\"
C:\\Documents and Settings\\user\\Asztal\\new.pwn(16) : error 017: undefined symbol \"MoveObject\"
C:\\Documents and Settings\\user\\Asztal\\new.pwn(19) : error 017: undefined symbol \"MoveObject\"
C:\\Documents and Settings\\user\\Asztal\\new.pwn(7) : warning 204: symbol is assigned a value that is never used: \"objGate\"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
//ZeRo MoveObject
new objGate;
new bool: open = false;
public OnFilterScriptInit( ) {
objGate = CreateObject(9824, 1102.7790527344, -951.53466796875, 43.581607818604, 0, 0, 1.99951171875); //Gondolom akkor tudod, hogy ide mit kell írni
SetTimer( \"OnServerMoveGate\", 10000, true );
return 1;
}
public OnServerMoveGate( );
public OnServerMoveGate( ) {
if( !open ) {
open = true;
MoveObject(objGate, 9824, 1102.779052, -951.534667, 43.581607, 5.0 ); //Nyitott pozícióra
} else {
open = false;
MoveObject(objGate, 9824, 1106.660888, -951.501281, 48.624282, 5.0 ); //Zárt pozícióra
}
}
//TengeriMalac MoveObject
#include <a_samp>
public OnFilterScriptInit() return SetTimer(\"Oda\", 10000, 0);
forward Oda();
public Oda()
{
SetTimer(\"Vissza\", 5000, 0);
MoveObject(9824, 1102.779052, -951.534667, 43.581607, 1.0);
}
forward Vissza();
public Vissza()
{
SetTimer(\"Oda\", 5000, 0);
MoveObject(9824, 1106.660888, -951.501281, 48.624282, 1.0);
}