11.02.2008, 09:23
this is the official movie making script from the FM & A Guild
it has a director mode(login as director and u can change weather ,time ,gravity,...)
and a freelook mode(u can walk ,drive,fly but no player is on ur screen)
u can buy cars and teleport it to yourself
u can save ur spawn
also u can save a X,Y,Z,interior location go and buy a weapon or CAR or wotever and teleport urself back
Pwn
Amx
Код:
{ SendClientMessage(playerid, COLOR_CORAL, "Welcome to FM-A Guild Help Center!"); SendClientMessage(playerid, COLOR_YELLOW, "To see the list of Teleporter-commands, please type /teles"); SendClientMessage(playerid, COLOR_YELLOW, "To see the list of Director-commands, please type /dir"); SendClientMessage(playerid, COLOR_YELLOW, "To see the list of Animation-commands, please type /anima"); SendClientMessage(playerid, COLOR_YELLOW, "To see the list of Other-commands, please type /commands"); return 1; } else if (strcmp(cmdtext, "/teles", true)==0) { SendClientMessage(playerid, COLOR_CORAL, "Available Commands in the Gamemode:"); SendClientMessage(playerid, COLOR_YELLOW, "/basejump1 | /basejump2 | /basejump3 /basejump4 | /basejump5 | /basejump6 /basejump7 | /basejump8 | /basejump9 | /basejump10"); SendClientMessage(playerid, COLOR_YELLOW, "/basejump11 | /basejump12 | /basejump13 | /basejump14 | /basejump15"); SendClientMessage(playerid, COLOR_YELLOW, "/airbase | /armyship | /home | /room1 | /room2 | /room3 | /room4 | /policeHQ | /SM | /plane1 | /plane2 | /amu1 | /amu2"); SendClientMessage(playerid, COLOR_YELLOW, "/underground1 | /underground2 | /underground3 | /underground4 | /diner1 | /diner2 | /diner3 | /stadion1 | /stadion2 | /stadion3 | /stadion4"); SendClientMessage(playerid, COLOR_YELLOW, "/airport | /airport_ls | /airport_sf | /airport_lv | /butcher | /battlefield | /bordello1 | /bordello2"); SendClientMessage(playerid, COLOR_YELLOW, "/offroad | /stuntplane | /stunt | /stadion4 | /bikes | /cars | /4x4 "); return 1; } else if (strcmp(cmdtext, "/dir", true)==0) { SendClientMessage(playerid, COLOR_CORAL, "Available Director-Commands in the Gamemode:"); SendClientMessage(playerid, COLOR_YELLOW, "/direct "); SendClientMessage(playerid, COLOR_YELLOW, "/fp | /up | /dn | /ne | /sw |"); SendClientMessage(playerid, COLOR_YELLOW, "/gravity | /weather | /time"); SendClientMessage(playerid, COLOR_YELLOW, "/say | /skydiveall"); return 1; } else if (strcmp(cmdtext, "/anima", true)==0) { SendClientMessage(playerid, COLOR_CORAL, "Available Animation-Commands in the Gamemode:"); SendClientMessage(playerid, COLOR_YELLOW, "/yes | /no | /sit | /sit_w | /sit_m | /fu"); SendClientMessage(playerid, COLOR_YELLOW, "/drunken | /chat | /pimp1 | /pimp2 | /look1 | /look2"); SendClientMessage(playerid, COLOR_YELLOW, "/strip1 | /strip2 | /strip3 | /strip4 | /strip5 | /strip6 | /strip7"); SendClientMessage(playerid, COLOR_YELLOW, "/smoke1 | /wank | /gun | /rapping | /sparring | /nightmare | /kiss"); return 1; } else if (strcmp(cmdtext, "/commands", true)==0) { SendClientMessage(playerid, COLOR_CORAL, "Available helpfull Commands in the Gamemode:"); SendClientMessage(playerid, COLOR_YELLOW, "/parachute |"); SendClientMessage(playerid, COLOR_YELLOW, "/givemepower "); SendClientMessage(playerid, COLOR_YELLOW, "/savepoint | /loadpoint | /savespawn"); SendClientMessage(playerid, COLOR_YELLOW, "/buycar | /getmycar"); SendClientMessage(playerid, COLOR_YELLOW, "/light | /katana | /bball | /shark | /wheelchair | /submarine"); SendClientMessage(playerid, COLOR_YELLOW, "/boom | /boom2 | /boom3"); return 1; }