-
Sziasztok! Valaki készitene nekem egy sorompó scriptet? Nagyon megköszönném!
Parancs a nyitáshoz: /h-nyit
Parancs a záráshoz: /h-zar
Koordináták:
Nyitott Pozició: -961.89941, 2709.5, 45.7
Zárt Pozició: Ugyan annak jelzi ki az MTA csak a rotációja más, X,Y,Z alatt ezt irja: 0.0000000,000.0, 0.0000
-
Kéne az object a CreateObject köszi és megcsinálom neked!
-
Kéne az object a CreateObject köszi és megcsinálom neked!
CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013); Alapbol nyitva kell legyen
-
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
Tessék használd egésségel
-
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
Tessék használd egésségel
Nem hozza létre az objectet, és a kód sem megy hozzá
-
Rakd be a módodba
mód elejére
new kapu;
Utána a OnGameModeInit alá a createobjectet
a többit a parancsokhoz nálam müködik!
-
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
Ez azért nem lesz jó mert mind a két parancs /h-nyit
Így lesz jó:
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-zar\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
-
Elírtam bocsánatotokat kérem nagyon szgyelem magam ezért a végzetes hibáért!
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-zar\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
[code]
Javitotam próbáld ki
-
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
Ez azért nem lesz jó mert mind a két parancs /h-nyit
Így lesz jó:
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-zar\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
Kezdõ scripter vagyok, azért annyira hüllye nem vagyok hogy ne irtam volna át.
Dupla hozzászólás automatikusan összefûzve. ( 2013. június 28. - 14:54:20 )
Elírtam bocsánatotokat kérem nagyon szgyelem magam ezért a végzetes hibáért!
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-zar\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
[code]
Javitotam próbáld ki
[/quote]
Benyomom a módba, remélem megy.
Dupla hozzászólás automatikusan összefûzve. ( 2013. június 28. - 15:06:14 )
Elírtam bocsánatotokat kérem nagyon szgyelem magam ezért a végzetes hibáért!
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new kapu;
kapu = CreateObject(968, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013);
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/h-nyit\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.251, 356.75, 6.013,5);
return 1;
}
if (strcmp(\"/h-zar\", cmdtext, true, 10) == 0)
{
MoveObject(kapu, -961.79999, 2709.6001, 45.5, 0.0000, 0.0000, 0.0000,5);
return 1;
}
return 0;
}
#endif
[code]
Javitotam próbáld ki
[/quote]
Beraktam a módba, tökéletesen ment, csak a koordinátákat kellet kicseréljem! Ment a +!