Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Name of Creature Lower case
Author Message
admin_teclis
Journeyman
*

Posts: 51
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Aug 2012
Reputation: 0

Age of Apocalypse

Post: #1
Name of Creature Lower case
Hi all,
my sphere generate the name of all creature (npc man or animal or monster) in lower case...
You can change this thing? where you change?
Tnx!
12-22-2013 08:56 AM
Find all posts by this user Like Post Quote this message in a reply
Crusader
Master
**

Posts: 254
Likes Given: 7
Likes Received: 19 in 12 posts
Joined: Apr 2012
Reputation: 6

Erehwon New Hera

Post: #2
RE: Name of Creature Lower case
inside the script of the monster
NAME=Ettin
instead of NAME=ettin

XD
12-23-2013 12:53 AM
Find all posts by this user Like Post Quote this message in a reply
tleilax
Journeyman
*

Posts: 56
Likes Given: 0
Likes Received: 1 in 1 posts
Joined: Jun 2012
Reputation: 0



Post: #3
RE: Name of Creature Lower case
Sorry for bringing this back, but is there any way to display names in lower case?

All my items and monsters are named like Uber Cool Sword of Doom - I'm using custom @itemclick trigger for players, any way to message the name lowercase as "uber cool sword of doom"?
02-18-2014 04:49 AM
Find all posts by this user Like Post Quote this message in a reply
Alaric
Journeyman
*

Posts: 227
Likes Given: 7
Likes Received: 9 in 4 posts
Joined: Oct 2012
Reputation: 7



Post: #4
RE: Name of Creature Lower case
STRTOLOWER
(This post was last modified: 02-18-2014 05:08 AM by Alaric.)
02-18-2014 05:08 AM
Find all posts by this user Like Post Quote this message in a reply
Coruja
Sphere Developer
*****

Posts: 987
Likes Given: 5
Likes Received: 226 in 187 posts
Joined: Jul 2012
Reputation: 7

Dimension Shard

Post: #5
RE: Name of Creature Lower case
the best way is set the name using lowercase manually on script, doing this you wont need events

or you can use a ugly workaround using events like this
Code:
[EVENTS e_players]
ON=@ItemAfterClick
LOCAL.ClickMsgText = <STRTOLOWER <LOCAL.ClickMsgText>>

[EVENTS e_npcs]
ON=@AfterClick
LOCAL.ClickMsgText = <STRTOLOWER <LOCAL.ClickMsgText>>
and edit these lines on sphere.ini to add these 2 events on all players/npcs
Code:
// Events related to all NPCs
EventsPet=e_npcs

// Events related to all players
EventsPlayer=e_players
02-22-2014 09:09 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)