27.02.2010, 16:47
i want only that [LSP] open it
public OnPlayerDoesSomething(playerid)
{
if(variable == something)
{
// do something
}
return 1;
}
if(!strcmp(cmdtext, "/open", true))
{
if(variable[playerid] == value) // change level for your level var and value for the level
{
MoveObject(objectid, bla, bla, bla);
}
return 1;
}
Originally Posted by jordikappen2
i want only that [LSP] open it
|