16.06.2010, 15:28
thnx
#if defined FILTERSCRIPT
#else
#endif
#include <a_samp> new gate; new lift; #if defined FILTERSCRIPT public OnFilterScriptInit() { print("\n--------------------------------------"); print(" Blank Filterscript by your name here"); print("--------------------------------------\n"); CreateObject(987, 1468.363525, -657.106262, 93.574989, 0.0000, 0.0000, 180.0000); CreateObject(987, 1456.440552, -657.044250, 93.541901, 0.0000, 0.0000, 270.0000); CreateObject(987, 1456.462280, -669.008423, 93.539307, 0.0000, 0.0000, 270.0000); CreateObject(987, 1456.463135, -680.952881, 93.540352, 0.0000, 0.0000, 270.0000); CreateObject(987, 1456.433594, -692.858154, 93.551041, 0.0000, 0.0000, 0.0000); CreateObject(987, 1460.435425, -692.844482, 93.514305, 0.0000, 0.0000, 0.0000); CreateObject(987, 1472.443115, -692.783081, 93.406532, 0.0000, 0.0000, 326.2500); CreateObject(987, 1482.343384, -699.393677, 93.365700, 0.0000, 0.0000, 0.0000); CreateObject(987, 1504.232300, -699.385925, 93.374977, 0.0000, 0.0000, 0.0000); gate = CreateObject(980, 1499.232178, -699.506348, 96.523392, 0.0000, 0.0000, 180.0000); //gate CreateObject(987, 1516.167969, -699.378113, 93.370796, 0.0000, 0.0000, 0.0000); CreateObject(987, 1519.253784, -699.395874, 93.356346, 0.0000, 0.0000, 0.0000); CreateObject(987, 1531.125244, -699.427795, 93.299973, 0.0000, 0.0000, 90.0000); CreateObject(987, 1531.156250, -687.483826, 93.323616, 0.0000, 0.0000, 90.0000); CreateObject(987, 1531.131226, -675.520752, 93.317047, 0.0000, 0.0000, 90.0000); CreateObject(987, 1531.156250, -668.856689, 93.308983, 0.0000, 0.0000, 90.0000); CreateObject(987, 1480.225220, -657.065247, 93.605492, 0.0000, 0.0000, 180.0000); CreateObject(987, 1492.176636, -657.018433, 93.636475, 0.0000, 0.0000, 180.0000); CreateObject(987, 1504.126099, -657.045227, 93.649994, 0.0000, 0.0000, 180.0000); CreateObject(987, 1516.067261, -657.047302, 93.649994, 0.0000, 0.0000, 180.0000); CreateObject(987, 1528.002686, -657.020203, 93.649994, 0.0000, 0.0000, 180.0000); CreateObject(1634, 1528.739868, -660.609131, 94.872307, 0.0000, 0.0000, 0.0000); lift = CreateObject(980, 1466.322510, -670.954590, 93.723312, 90.2408, 0.0000, 270.0000); //lift CreateObject(8040, 1423.647705, -670.541870, 125.796761, 0.0000, 0.0000, 0.0000); CreateObject(8040, 1423.541870, -671.091248, 131.876846, 180.4820, 0.0000, 0.0000); return 1; } public OnFilterScriptExit() { return 1; } main() { print("\n----------------------------------"); print(" Blank Gamemode by your name here"); print("----------------------------------\n"); } #endif public OnPlayerConnect(playerid) { return 1; } public OnPlayerDisconnect(playerid, reason) { return 1; } public OnPlayerCommandText(playerid, cmdtext[]) { if (strcmp("/bbbmo", cmdtext, true, 10) == 0) { MoveObject(gate, 1499.232178, -699.506348, -1.0, 4); return 1; } if (strcmp("/bbbmc", cmdtext, true, 10) == 0) { MoveObject(gate, 1499.232178, -699.506348, 96, 4); return 1; } if (strcmp("/blbmo", cmdtext, true, 10) == 0) { MoveObject(lift, 1466.322510, -670.954590, 125, 4); return 1; } if (strcmp("/blbmc", cmdtext, true, 10) == 0) { MoveObject(lift, 1466.322510, -670.954590, 93, 4); return 1; } return 0; } |