Author Topic: Auto-Change GameMode Name by Moby (me)  (Read 6732 times)

0 Members and 1 Guest are viewing this topic.

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Auto-Change GameMode Name by Moby (me)
« on: August 01, 2012, 12:27:13 am »
Auto-Change GameMode Name

This script will make the server name to change once a certain period of time chosen by you!

I just give examples.

Video: http://www.youtube.com/watch?v=SgzkcNDsLeo


On Top :


Code: [Select]
new RandomGMName[][] =
{

"Come and You!",
"Best Server!",
"<= Small Ping",
"<= is funny",
"***By Moby"
};

forward SendGMName();

OnGameModeInit:

Code: [Select]
SetTimer("SendGMName",1000, true);
On End:

Code: [Select]
public SendGMName()
{
    new randMSG = random(sizeof(RandomGMName));
    SetGameModeText(RandomGMName[randMSG]);
}

Have Fun !
« Last Edit: October 29, 2012, 04:47:51 pm by sseebbyy »

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline Pegasus

  • Street Thug
  • *
  • Posts: 4
  • Hello world! im booored...
    • View Profile
    • Dark Zone 4 FuN
Re: Auto-Change GameMode Name by Moby (me)
« Reply #1 on: September 01, 2012, 12:45:11 pm »
Nice one Moby  ;)

Offline dynavolt71

  • Crime Boss
  • ****
  • Posts: 371
    • View Profile
    • My Blog
Re: Auto-Change GameMode Name by Moby (me)
« Reply #2 on: October 06, 2012, 01:01:24 pm »
how to install on gups ?
[PAWNO]Fix Error " Failed to set data for "" " - http://forum.vicecitymultiplayer.com/index.php?topic=5743.0



:'(

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: Auto-Change GameMode Name by Moby (me)
« Reply #3 on: October 06, 2012, 02:38:22 pm »
how to install on gups ?
Same as other scripts I think.
I never used GUPS ;p Maybe to extract , but never to change it.

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline stormeus

  • VC:MP Developer
  • VC:MP Veteran
  • *
  • Posts: 1122
    • View Profile
Re: Auto-Change GameMode Name by Moby (me)
« Reply #4 on: October 08, 2012, 07:20:40 pm »
ahhh cmon im is rookie scripter and im dont knew this : On Top and OnGameModeInit and On End

On Top just means to put it at the top of the script. On End just means to put it at the bottom of the script. If you don't know what OnGameModeInit is, you need to read tutorials before trying to copy and paste other people's scripts.
Do not PM me for support.




Offline dynavolt71

  • Crime Boss
  • ****
  • Posts: 371
    • View Profile
    • My Blog
Re: Auto-Change GameMode Name by Moby (me)
« Reply #5 on: October 20, 2012, 09:36:16 am »
Help Its Says :
Code: [Select]
C:\Users\afr\Desktop\Beach City\gamemodes\BeachCity.pwn(135) : error 029: invalid expression, assumed zero
C:\Users\afr\Desktop\Beach City\gamemodes\BeachCity.pwn(135) : error 008: must be a constant expression; assumed zero
Pawn compiler 3.0.3367 Copyright (c) 1997-2005, ITB CompuPhase


2 Errors.
[PAWNO]Fix Error " Failed to set data for "" " - http://forum.vicecitymultiplayer.com/index.php?topic=5743.0



:'(

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: Auto-Change GameMode Name by Moby (me)
« Reply #6 on: October 20, 2012, 11:02:56 am »
Help Its Says :
Code: [Select]
C:\Users\afr\Desktop\Beach City\gamemodes\BeachCity.pwn(135) : error 029: invalid expression, assumed zero
C:\Users\afr\Desktop\Beach City\gamemodes\BeachCity.pwn(135) : error 008: must be a constant expression; assumed zero
Pawn compiler 3.0.3367 Copyright (c) 1997-2005, ITB CompuPhase


2 Errors.

Give me and the line 135. (the script from line 135)

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline dynavolt71

  • Crime Boss
  • ****
  • Posts: 371
    • View Profile
    • My Blog
Re: Auto-Change GameMode Name by Moby (me)
« Reply #7 on: October 20, 2012, 12:20:07 pm »
Help Its Says :
Code: [Select]
C:\Users\afr\Desktop\Beach City\gamemodes\BeachCity.pwn(135) : error 029: invalid expression, assumed zero
C:\Users\afr\Desktop\Beach City\gamemodes\BeachCity.pwn(135) : error 008: must be a constant expression; assumed zero
Pawn compiler 3.0.3367 Copyright (c) 1997-2005, ITB CompuPhase


2 Errors.

Give me and the line 135. (the script from line 135)
this :[pawn]};[/pawn]
Note i just add these :
[pawn]new RandomGMName[][] =
{

"Come and You!",
"Best Server!",
"<= Small Ping",
"<= is funny",
"***By Moby",
};

forward SendGMName();[/pawn]
On Top
[PAWNO]Fix Error " Failed to set data for "" " - http://forum.vicecitymultiplayer.com/index.php?topic=5743.0



:'(

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: Auto-Change GameMode Name by Moby (me)
« Reply #8 on: October 20, 2012, 05:04:05 pm »
Pawn Code sucks a bit...

Replace that with this:
Code: [Select]
new RandomGMName[][] =
{

"Come and You!",
"Best Server!",
"<= Small Ping",
"<= is funny",
"***By Moby",
};

forward SendGMName();

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline dynavolt71

  • Crime Boss
  • ****
  • Posts: 371
    • View Profile
    • My Blog
Re: Auto-Change GameMode Name by Moby (me)
« Reply #9 on: October 28, 2012, 07:02:54 am »
Auto-Change GameMode Name
some Thing Wrong

Code: [Select]
new RandomGMName[][] =
{

"Come and You!",
"Best Server!",
"<= Small Ping",
"<= is funny",
"***By Moby",
};

forward SendGMName();

Moby There Arrent Create Wrong On The last

okay See This
Code: [Select]
new RandomGMName[][] =
{

"Come and You!",
"Best Server!",
"<= Small Ping",
"<= is funny",
"***By Moby",
};

forward SendGMName();
Replace With
Code: [Select]
new RandomGMName[][] =
{

"Come and You!",
"Best Server!",
"<= Small Ping",
"<= is funny",
"***By Moby"
};

forward SendGMName();
Hope Thats Work  :)
[PAWNO]Fix Error " Failed to set data for "" " - http://forum.vicecitymultiplayer.com/index.php?topic=5743.0



:'(

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: Auto-Change GameMode Name by Moby (me)
« Reply #10 on: October 28, 2012, 12:52:45 pm »
You right :P

Is fixed now ^

Thank You. I like to see people who really try the script !

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline dynavolt71

  • Crime Boss
  • ****
  • Posts: 371
    • View Profile
    • My Blog
Re: Auto-Change GameMode Name by Moby (me)
« Reply #11 on: October 29, 2012, 02:05:55 am »
Create more i will make it :)

Wow Thx Its Create My Svr Cool  ;D Sorry For Double Reply. 8)

Merged double post. Use the Modify button, please.
-stormeus
« Last Edit: October 29, 2012, 08:18:53 pm by stormeus »
[PAWNO]Fix Error " Failed to set data for "" " - http://forum.vicecitymultiplayer.com/index.php?topic=5743.0



:'(

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: Auto-Change GameMode Name by Moby (me)
« Reply #12 on: October 29, 2012, 04:47:35 pm »
Wow Thx Its Create My Svr Cool  ;D Sorry For Double Reply. 8)

Use EDIT button and remove one reply ;)

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline [KB]ViceMania

  • Wiseguy
  • **
  • Posts: 53
  • Mega War server administrator
    • View Profile
Re: Auto-Change GameMode Name by Moby (me)
« Reply #13 on: October 29, 2012, 11:04:07 pm »
sseebbyy THE BEST, this is funny :P