Post: Can Someone Please Convert My Patch For Me? [REWARD]
10-11-2011, 11:14 PM #1
Jeremy
Former Staff
(adsbygoogle = window.adsbygoogle || []).push({});
Can someone please convert my PC patch to PS3 for me? There is a 1 million vBux reward for converting, and 1 million vBux reward for recording the patch on PS3. I would do it myself but im to busy and i have alot vBux to spend =D :p

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

QUOTE ME IF YOUR DOING IT!!
(adsbygoogle = window.adsbygoogle || []).push({});
10-11-2011, 11:16 PM #2
iReset Nigga
2Fresshh!!
Originally posted by Advisable View Post
Can someone please convert my PC patch to PS3 for me? There is a 1 million vBux reward for converting, and 1 million vBux reward for recording the patch on PS3. I would do it myself but im to busy and i have alot vBux to spend =D :p

QUOTE ME IF YOUR DOING IT!!


ill convert it for 1 mill
10-11-2011, 11:31 PM #3
Originally posted by Advisable View Post
Can someone please convert my PC patch to PS3 for me? There is a 1 million vBux reward for converting, and 1 million vBux reward for recording the patch on PS3. I would do it myself but im to busy and i have alot vBux to spend =D :p

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

QUOTE ME IF YOUR DOING IT!!
you should fix it first, there are a few things wrong in there,
10-11-2011, 11:39 PM #4
Jeremy
Former Staff
Originally posted by x. View Post
you should fix it first, there are a few things wrong in there,
Really? i just tested it...please tell me/show me my errors
10-11-2011, 11:54 PM #5
Originally posted by Advisable View Post
Really? i just tested it...please tell me/show me my errors


Well this is just Karoolus's patch with stuff taken out which I don't really get and I only had a quick look but,
You have taken out a load of sub menus but haven't changed the numbers.
And your stats functions wont do anything , why did you change them from the original? karoolus's addoption allows for variables in the menu options but you have taken them out.

---------- Post added at 12:54 AM ---------- Previous post was at 12:52 AM ----------

Originally posted by Advisable View Post
Really? i just tested it...please tell me/show me my errors
Oh, and you have used a patch with the set text string overflow fixed and then put the death machine in it which uses 30 set texts and will crash the ps3, which is kind of pointless..

And take out the dohearts as they will crash it as well..
10-11-2011, 11:55 PM #6
Jeremy
Former Staff
Originally posted by x. View Post
Well this is just Karoolus's patch with stuff taken out which I don't really get and I only had a quick look but,
You have taken out a load of sub menus but haven't changed the numbers.
And your stats functions wont do anything , why did you change them from the original? karoolus's addoption allows for variables in the menu options but you have taken them out.
It wasnt working for me before, so i had to give the stats there own functions
10-11-2011, 11:57 PM #7
Originally posted by Advisable View Post
It wasnt working for me before, so i had to give the stats there own functions
but those functions won't even do anything now. They set a load of variables

kills= whatever..

The original ones work fine.
10-12-2011, 12:00 AM #8
Jeremy
Former Staff
Originally posted by x. View Post
but those functions won't even do anything now. They set a load of variables

kills= whatever..

The original ones work fine.

They weren't working for me, and if they did work for me i would of left it alone. I will work on trying to get it to work though.
10-12-2011, 12:08 AM #9
Originally posted by Advisable View Post
They weren't working for me, and if they did work for me i would of left it alone. I will work on trying to get it to work though.
This menu is a very clever piece of coding but you need to take some time and read it through to understand how to use it.
Here is a very simple example..

This is from my clantag section

self addoption(M ,"Clan Tag - {Dv}",::doClan,"{Dv}");
self addoption(M ,"Clan Tag - {{}}",::doClan,"{{}}");
self addoption(M ,"Clan Tag - B@BY",::doClan,"B@BY");

The first bit "Clan Tag - {Dv}" is what is displayed in the menu.
The second bit ::doclan calls the function below
The third bit , "{Dv}" sets the variable in the function (choice) and sets the clantag

You then have this function

doClan(choice){self setclientdvar("clanname",choice);}

It works the same for the stats menu..
10-12-2011, 01:11 AM #10
Jeremy
Former Staff
Originally posted by x. View Post
This menu is a very clever piece of coding but you need to take some time and read it through to understand how to use it.
Here is a very simple example..

This is from my clantag section

self addoption(M ,"Clan Tag - {Dv}",::doClan,"{Dv}");
self addoption(M ,"Clan Tag - {{}}",::doClan,"{{}}");
self addoption(M ,"Clan Tag - B@BY",::doClan,"B@BY");

The first bit "Clan Tag - {Dv}" is what is displayed in the menu.
The second bit ::doclan calls the function below
The third bit , "{Dv}" sets the variable in the function (choice) and sets the clantag

You then have this function

doClan(choice){self setclientdvar("clanname",choice);}

It works the same for the stats menu..
I understand it, thanks bro Winky Winky

And thats what was there before but it didnt work :(

---------- Post added at 08:21 PM ---------- Previous post was at 08:13 PM ----------

Originally posted by x. View Post
This menu is a very clever piece of coding but you need to take some time and read it through to understand how to use it.
Here is a very simple example..

This is from my clantag section

self addoption(M ,"Clan Tag - {Dv}",::doClan,"{Dv}");
self addoption(M ,"Clan Tag - {{}}",::doClan,"{{}}");
self addoption(M ,"Clan Tag - B@BY",::doClan,"B@BY");

The first bit "Clan Tag - {Dv}" is what is displayed in the menu.
The second bit ::doclan calls the function below
The third bit , "{Dv}" sets the variable in the function (choice) and sets the clantag

You then have this function

doClan(choice){self setclientdvar("clanname",choice);}

It works the same for the stats menu..

I just got it working and i now have that in my patch <3

Thanks for explaining it to me that way :love:

---------- Post added at 09:11 PM ---------- Previous post was at 08:21 PM ----------

Originally posted by x. View Post
This menu is a very clever piece of coding but you need to take some time and read it through to understand how to use it.
Here is a very simple example..

This is from my clantag section

self addoption(M ,"Clan Tag - {Dv}",::doClan,"{Dv}");
self addoption(M ,"Clan Tag - {{}}",::doClan,"{{}}");
self addoption(M ,"Clan Tag - B@BY",::doClan,"B@BY");

The first bit "Clan Tag - {Dv}" is what is displayed in the menu.
The second bit ::doclan calls the function below
The third bit , "{Dv}" sets the variable in the function (choice) and sets the clantag

You then have this function

doClan(choice){self setclientdvar("clanname",choice);}

It works the same for the stats menu..
EDIT: I FIXED IT :y:

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo