View Single Post
  #3  
Old 11-19-2011, 01:13 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Crow View Post
PHP Code:
temp.nick player.nick.substring(0player.nick.pos("(")).trim(); 
Should do the trick.
This would be a problem if someone used "(" in their actual name, it would probably be better to do:

PHP Code:
temp.nick player.nick.substring(0player.nick.pos("(" player.guild ")")).trim(); 
Reply With Quote