Post: Scripting
10-19-2013, 06:39 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); How do u add scripts in waw mod menu on PS3
10-20-2013, 12:10 AM #2
forflah123
Who’s Jim Erased?
Originally posted by mjkruse View Post
How do u add scripts in waw mod menu on PS3


by the sound of it your just starting out so i would recommend you just stick to copy and pasting stuff all ready made by other people. then if you want to learn to make stuff this will help you because you will understand your way around the patch or what ever you are using for a source of code. the easiest way of getting basic stuff if to Google it.(i think Cory made a thread ages ago with all basic scripts cod4 section (they all work on w@w apart from kill streaks (different function name)) )

The following user thanked forflah123 for this useful post:

imLiaMxoPs3
10-20-2013, 05:23 PM #3
imLiaMxoPs3
Do a barrel roll!
Originally posted by mjkruse View Post
How do u add scripts in waw mod menu on PS3


I Agree With forflah stick with Copy & Paste Until You Get More Confident

Or Just dive Straight in, Like xRaw Used Like
addOption("VIP", 0, "God Mode", ::doGod, "");

So, under the menu base coding, he would put the Script For It Like

Originally posted by another user
ToggleGod()
{
if(self.god == true)
{
self notify("stop_god");
self iPrintln("^3Godmode ^1OFF");
self.maxhealth = 100;
self.health = self.maxhealth;
self.god = false;
}
else
{
self thread doGod();
self iPrintln("^3Godmode ^2ON");
self.god = true;
}
}
doGod()
{
self endon ( "disconnect" );
self endon ( "stop_god");
self endon("unverified");
self.maxhealth = 90000;
self.health = self.maxhealth;
while(1)
{
wait .1;
if(self.health < self.maxhealth) self.health = self.maxhealth;
}
}


so There Your God Mode Script :p
Just add me on skype i will help you

my name on skype is imLiaMxo
10-22-2013, 12:21 AM #4
is scripting only for patches[SUB][/SUB]

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo