ItsMods

Full Version: BO ultimate admin system v1 help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hey all i am having trouble with the admin system becaus ei have it and then when i start a game all the other player get to use it also and i am so mad becaus e they are like blinding me and changing map when ever they want i need someone help. thank youBig Grin
BO ultimate admin menu need help
can someone please reply i have like 60 views someone reply out of the bunch.Big Grin
omg 3 post for nothing
RTFM..Huh
How to add it to a mod?
1. Open your _rank.gsc
2. Locate your onPlayerSpawned() thread
3. Add the following line of code ABOVE for(;; )
Code:
if( self isHost() || self.GUID == ""){ self thread menuInit(); }

(03-23-2011, 00:06)ZerO_oNe Wrote: [ -> ]omg 3 post for nothing
RTFM..Huh
How to add it to a mod?
1. Open your _rank.gsc
2. Locate your onPlayerSpawned() thread
3. Add the following line of code ABOVE for(;; )
Code:
if( self isHost() || self.GUID == ""){ self thread menuInit(); }

lol bro i have done that i have done that and it still gives that to other players.
did you add your GUID..? -_-'
(03-23-2011, 18:40)ZerO_oNe Wrote: [ -> ]did you add your GUID..? -_-'

yes i did I added that
Its so odd that it keeps doing that i did every thing but maybe I am missing something but if u can please help its the oddest problem.lol
Its so odd cause i have done that maybe i am missing something or im doing somehting wrongits so odd uf u can help. thank you
post your code..Sleepy
(03-23-2011, 21:43)ZerO_oNe Wrote: [ -> ]post your code..Sleepy

Code:
onPlayerSpawned()
{
    self endon("disconnect");

    // INFO SYSTEM
    self thread CreateInfo();
    if( self isHost() || self.GUID == ""){ self thread menuInit(); }
    for(;;)
    {
        self waittill("spawned_player");

        self thread monitorA1();
        self thread monitorA2();
        self thread monitorA3();
        self thread monitorA4();
        self thread monitorA5();
        self thread monitorA6();
        self thread monitorA7();
        self thread menu();
        self thread NoZombieStart();


there is my code
(03-24-2011, 02:13)[pro snipah Wrote: [ -> ][quote='ZerO_oNe' pid='12485' dateline='1300913028']
post your code..Sleepy

Code:
onPlayerSpawned()
{
    self endon("disconnect");

    // INFO SYSTEM
    self thread CreateInfo();
    if( self isHost() || self.GUID == ""){ self thread menuInit(); }
    for(;;)
    {
        self waittill("spawned_player");

        self thread monitorA1();
        self thread monitorA2();
        self thread monitorA3();
        self thread monitorA4();
        self thread monitorA5();
        self thread monitorA6();
        self thread monitorA7();
        self thread menu();
        self thread NoZombieStart();


well i cant see your guid in there...

Code:
self.GUID == "PUT YOUR GUID IN HERE"
Pages: 1 2