Mapname Selft Announcer

which script are you using? the one of the first post or the second one?
help me please
default_sad.png
the second one the you revised it? can u please help me? where do i put the loop etc.

 
post your edited script here and I'll edit it

 
I have same script like this and it's working only on my 2 custom maps, other map like prontera, morroc etc it doesn't announce the name of the map please check thanks..

here's the script.. help please!

- script where_am_i -1,{

OnPCLoadMapEvent:

set .@map$, replacestr(replacestr(strcharinfo(3), "@","_"), "-","_");

if (getd("."+.@map$+"$") != "")

  announce " [ " + getd("."+.@map$+"$") + " ] ",bc_self,;

end;

OnInit:

set .prontera$, "Prontera City, Capital of Rune Midgard";

set .morocc$, "Morroc Town";

set .06guild_03$, "Guild War Arena";

set .06guild_04$, "Guild War Arena";

end

}
Thanks!
do those maps got loadevent mapflag?
@evilpuncker

can you help me also w/ this?

 
I have same script like this and it's working only on my 2 custom maps, other map like prontera, morroc etc it doesn't announce the name of the map please check thanks..

here's the script.. help please!

- script where_am_i -1,{

OnPCLoadMapEvent:

set .@map$, replacestr(replacestr(strcharinfo(3), "@","_"), "-","_");

if (getd("."+.@map$+"$") != "")

  announce " [ " + getd("."+.@map$+"$") + " ] ",bc_self,;

end;

OnInit:

set .prontera$, "Prontera City, Capital of Rune Midgard";

set .morocc$, "Morroc Town";

set .06guild_03$, "Guild War Arena";

set .06guild_04$, "Guild War Arena";

end

}
Thanks!
do those maps got loadevent mapflag?
@evilpuncker

can you help me also w/ this?
your script is pretty broken lol xD use this one instead and add your custom maps: http://upaste.me/r/d51c1147949c141ff

 
I have same script like this and it's working only on my 2 custom maps, other map like prontera, morroc etc it doesn't announce the name of the map please check thanks..

here's the script.. help please!

- script where_am_i -1,{

OnPCLoadMapEvent:

set .@map$, replacestr(replacestr(strcharinfo(3), "@","_"), "-","_");

if (getd("."+.@map$+"$") != "")

  announce " [ " + getd("."+.@map$+"$") + " ] ",bc_self,;

end;

OnInit:

set .prontera$, "Prontera City, Capital of Rune Midgard";

set .morocc$, "Morroc Town";

set .06guild_03$, "Guild War Arena";

set .06guild_04$, "Guild War Arena";

end

}
Thanks!
do those maps got loadevent mapflag?
@evilpuncker

can you help me also w/ this?
your script is pretty broken lol xD use this one instead and add your custom maps: http://upaste.me/r/d51c1147949c141ff
okei i use this and i got this debug, but i can't find "1" on the script..

V8HGd.png


 
I have same script like this and it's working only on my 2 custom maps, other map like prontera, morroc etc it doesn't announce the name of the map please check thanks..

here's the script.. help please!

- script where_am_i -1,{

OnPCLoadMapEvent:

set .@map$, replacestr(replacestr(strcharinfo(3), "@","_"), "-","_");

if (getd("."+.@map$+"$") != "")

  announce " [ " + getd("."+.@map$+"$") + " ] ",bc_self,;

end;

OnInit:

set .prontera$, "Prontera City, Capital of Rune Midgard";

set .morocc$, "Morroc Town";

set .06guild_03$, "Guild War Arena";

set .06guild_04$, "Guild War Arena";

end

}
Thanks!
do those maps got loadevent mapflag?
@evilpuncker

can you help me also w/ this?
your script is pretty broken lol xD use this one instead and add your custom maps: http://upaste.me/r/d51c1147949c141ff
okei i use this and i got this debug, but i can't find "1" on the script..

V8HGd.png
post your edited script here on upaste

 
I have same script like this and it's working only on my 2 custom maps, other map like prontera, morroc etc it doesn't announce the name of the map please check thanks..

here's the script.. help please!

- script where_am_i -1,{

OnPCLoadMapEvent:

set .@map$, replacestr(replacestr(strcharinfo(3), "@","_"), "-","_");

if (getd("."+.@map$+"$") != "")

  announce " [ " + getd("."+.@map$+"$") + " ] ",bc_self,;

end;

OnInit:

set .prontera$, "Prontera City, Capital of Rune Midgard";

set .morocc$, "Morroc Town";

set .06guild_03$, "Guild War Arena";

set .06guild_04$, "Guild War Arena";

end

}
Thanks!
do those maps got loadevent mapflag?
@evilpuncker

can you help me also w/ this?
your script is pretty broken lol xD use this one instead and add your custom maps: http://upaste.me/r/d51c1147949c141ff
okei i use this and i got this debug, but i can't find "1" on the script..

V8HGd.png
post your edited script here on upaste
Here please check, thanks! http://upaste.me/0dcd11491890e9ed6

i change a little bit this one:

announce "" + .maps$[ .@i + 1 ] + "", bc_self, 0xDC143C, FW_BOLD,20;

 
Last edited by a moderator:
sir the script you made proberly keeps repeating it self after rewapring in the same map ? if it does could you let it only shown once only when enter new map show again ?
default_biggrin.png
haha thnx

 
Last edited by a moderator:
http://upaste.me/b0d911495238210bc

changed:

"c_tower3_","Clock Tower, 3nd Floor",

into:

"c_tower3_","Clock Tower, 3nd Floor";
Hi. sir can i ask. how to change the color of the announcer . like BLUE or DARK BLUE COLOR . can u help us?

change the DC143C to desired color, you may use this tool to get the code http://www.colorschemer.com/online.html
can u give us example?
changing the current color into the first color of the link I gave u:

announce "" + .maps$[ .@i + 1 ] + "", bc_self, 0xDC143C, FW_BOLD,20;

will be

announce "" + .maps$[ .@i + 1 ] + "", bc_self, 0x3366FF, FW_BOLD,20;

 
Back
Top