|
 |
|
|
|
|
|
GTA Modification Forums
IV Coding Request All requests here!
 |
|
 |
| |
Vintage88  |
|
Lost MC | VP

Group: Members
Joined: Nov 29, 2011


|
I'd like to request that someone updates CoMPMStR's Super Spawner Scipt to support 1070 and EFLC. The author has released the source files here.This script allows you to create custom missions and scenarios. You can spawn peds, cars and objects and set them up how you'd like... just like you can with the Simple Native Trainer. The difference is with the Super Spawner Script you can also save it all to an INI and easily load it back up. With SNT you can only save objects to an INI. When this script was popular I remember people used to use it in groups online to make custom missions... missions like you'd find in single player. Others used to use it when creating machinima videos to quickly load up different "scenes" they are filming. Here is a video example of a mission that could be saved with this script: http://www.youtube.com/watch?v=IJOw2gl8atUHere's another video example that shows how animations can be tied in to make the missions more realistic (skip to 4:10): http://www.youtube.com/watch?v=JtNQi6yxPSsBesides missions the uses for this script are almost endless. For instance you could setup a jump that lands in a field of a dozen running helicopters. You could setup "ped bowling" games and easily load back up the "pins" after each person has their turn. When chilling in free-roam you could gather a few players and head into Maisonette where you've spawned clubbers, dancers, bouncers, even the objects that can play music. This script is basically a tool to save your creativity with. =) Cheers and hope someone gets on this soon. This post has been edited by Vintage88 on Monday, Mar 19 2012, 06:54
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
tickHooker  |
|
Player Hater

Group: BUSTED!
Joined: Apr 15, 2012

|
| CODE | using GTA; using System; using System.Windows.Forms;
public class NoCops : Script { bool activate; public NoCops() { BindKey(Keys.F1, ToggleScript); Tick += new EventHandler(NoCops_Tick); } void NoCops_Tick(object sender, EventArgs e) { if (!activate) { return; } else { //if you want to constantly set your wanted level to 0, delete the "//" before "Player.WantedLevel = 0;"
//Player.WantedLevel = 0;
foreach (Ped ped in World.GetAllPeds()) { if (ped == Player.Character) { continue; }
//if for some reason using RelationshipGroup does not work, use this... //if (ped.PedType == PedType.Cop)
//simply move the "//" from the line above to the line below
if (ped.RelationshipGroup == RelationshipGroup.Cop) { ped.Delete();//you will never see cops } } } } void ToggleScript() { activate = !activate; if (activate) { GTA.Native.Function.Call("PRINT_STRING_WITH_LITERAL_STRING_NOW", "STRING", "NO COPS SCRIPT ACTIVE", 2000, 1); } else { GTA.Native.Function.Call("PRINT_STRING_WITH_LITERAL_STRING_NOW", "STRING", "NO COPS SCRIPT DISABLED", 2000, 1); } } } |
you can trigger this script to deactivate if u kill a ped and then to give you a star, i will update it later This post has been edited by tickHooker on Monday, Apr 16 2012, 09:56
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
iSmokeMeth  |
|
Player Hater

Group: BUSTED!
Joined: Apr 16, 2012

|
lol @ mods ban me again pleeze!!!! hey if u guys need coding help just go to my youtube and message me because these guys are butthurt oh and mods dont tell people u dont have the power to delete posts, it was a bad choice of words xD especially to a guy who gets bored at work alot xD nothing personal...i mean is anything on the web personal xD anyways my youtube name is imac*nt, check my latest vids, writing an epic drugwars mod ;D so if u have code requests message me or if u r interested in drug wars message me, very close to a release version  but yeah keep banning the one person that helps people on here, with out me your f*ckin coding section is full of "how do i make scripts work" threads which i told your f*ckin dumbasses to sticky!!!!!!! oh and no one is gonna follow your overly complicated forum categories, all you f*cks do is lock people's threads when they need help, if anyone should be banned it's all you stupid f*ckin mods that DONT EVEN f*ckIN MODERATE!!!!!!!!!!!!!!! Stop locking people's threads u f*ckin assholes, u think programmers and the people that can help go into those other thread topics to help noobs??? That's why people post for help here u f*ckin idiots and all u do is block them and tell them to go somewhere else...hmm maybe that's why this place is f*cking dead jesus christ i swear u guys are f*ckin morons, give me your name and address so i can come slap u and do u some good and are u f*ckin idiot incapable of banning my IP??
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
0 User(s) are reading this topic (0 Guests and 0 Anonymous Users)
0 Members:
Pages:
(30) « First ... 14 15 [16] 17 18 ... Last »
Track this topic
Receive email notification when a reply has been made to this topic and you are not active on the board.
Subscribe to this forum
Receive email notification when a new topic is posted in this forum and you are not active on the board.
Download / Print this Topic
Download this topic in different formats or view a printer friendly version.
| |
 |
|
 |
|
|
|
|