Post: Can Someone Help Me Figure Out Why Im Getting a Bad Syntax Error?
08-28-2011, 06:06 AM #1
Jeremy
Former Staff
(adsbygoogle = window.adsbygoogle || []).push({});
Can Someone Help Me Figure Out Why Im Getting a Bad Syntax Error?

Download: You must login or register to view this content.

Mods Under: advisablemod.gsc
(adsbygoogle = window.adsbygoogle || []).push({});
08-28-2011, 06:53 PM #11
Originally posted by Advisable View Post
the self thread for doPrestige(); is called doTP(); cuz it stands for Toggle Prestige

and can you show me how to use that shortcut, cuz you lost me...


That doesn't make sense, its in your patch. Where is the doPrestige function?

    doTP()
{
self maps\mp\gametypes\_persistence::statSet( "rankxp", 900000 );
self maps\mp\gametypes\_persistence::statSet( "rank", 55 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 0 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 0 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 1 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 1 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 2 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 2 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 3 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 3 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 4 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 4 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 5 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 5 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 6 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 6 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 7 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 7 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 8 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 8 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 9 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 9 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 10 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 10 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 11 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 11 );
self doPrestige();
}
08-28-2011, 06:58 PM #12
Jeremy
Former Staff
Originally posted by x. View Post
That doesn't make sense, its in your patch. Where is the doPrestige function?

    doTP()
{
self maps\mp\gametypes\_persistence::statSet( "rankxp", 900000 );
self maps\mp\gametypes\_persistence::statSet( "rank", 55 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 0 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 0 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 1 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 1 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 2 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 2 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 3 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 3 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 4 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 4 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 5 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 5 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 6 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 6 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 7 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 7 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 8 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 8 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 9 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 9 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 10 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 10 );
self waittill( "prestige" );
self thread iPrintlBold( "Prestige 11 - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", 11 );
self doPrestige();
}


Isnt doTP(); the function?

Because I thought that was the function :\

Hopefully you can correct me...
08-28-2011, 07:02 PM #13
iReset Nigga
2Fresshh!!
Originally posted by Advisable View Post
Isnt doTP(); the function?

Because I thought that was the function :\

Hopefully you can correct me...


Lol he is saying where are u getting this doPrestige Function from
your code u have posted doesnt have the doPrestige Function in it

The following user thanked iReset Nigga for this useful post:

x_DaftVader_x
08-28-2011, 07:06 PM #14
Originally posted by Advisable View Post
Isnt doTP(); the function?

Because I thought that was the function :\

Hopefully you can correct me...


At the bottom of the doTP() function you have
self doPrestige();
but there is no doPrestige() function in your patch !
08-28-2011, 07:12 PM #15
Jeremy
Former Staff
Originally posted by x. View Post
At the bottom of the doTP() function you have
self doPrestige();
but there is no doPrestige() function in your patch !
ohhhhh ok, well whats the function? and where should i add it cuz im kind of new to this
08-28-2011, 07:18 PM #16
Originally posted by Advisable View Post
ohhhhh ok, well whats the function? and where should i add it cuz im kind of new to this

lol, i have no idea, you'll have to look at the patch you got these other functions from..

I thought you have released other patches already ?
08-28-2011, 07:48 PM #17
Jeremy
Former Staff
Originally posted by x. View Post
lol, i have no idea, you'll have to look at the patch you got these other functions from..

I thought you have released other patches already ?
yah i did but they werent made by me, they were made by freinds from school and they dont join gaming websites, they just gave it to me to put my name in it cuz they only mod for fun

this is my first patch that i did myself

---------- Post added at 03:48 PM ---------- Previous post was at 03:43 PM ----------

Originally posted by x. View Post
lol, i have no idea, you'll have to look at the patch you got these other functions from..

I thought you have released other patches already ?
i changed the codes for a few of the mods and added a few new ones

can you look over the new patch?
08-28-2011, 07:52 PM #18
Originally posted by Advisable View Post
yah i did but they werent made by me, they were made by freinds from school and they dont join gaming websites, they just gave it to me to put my name in it cuz they only mod for fun

this is my first patch that i did myself

---------- Post added at 03:48 PM ---------- Previous post was at 03:43 PM ----------

i changed the codes for a few of the mods and added a few new ones

can you look over the new patch?
just pm it to me and i'll look when i get a minute..
08-28-2011, 07:53 PM #19
Jeremy
Former Staff
Originally posted by skullcruncher13 View Post
bad internet maybee, ?
wow :dumb:

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo