Thread: Any idea?
View Single Post
  #1  
Old 01-13-2008, 04:10 PM
Jeffyy Jeffyy is offline
Graphics Artist
Jeffyy's Avatar
Join Date: Dec 2007
Location: USA, NJ
Posts: 82
Jeffyy is an unknown quantity at this point
Any idea?

Any idea why this wont change nick?

NPC Code:
    
function onCreated() {
new GuiTextEditCtrl("RiotGamesys_TextEdit2") {
profile = GuiBlueTextEditProfile;
height = 20;
text = player.nick;
width = 122;
x = 176;
y = 23;

function onTimeout(){
player.nick = RiotGamesys_TextEdit2.text;
}
setTimer(.05);}
function RiotGamesys_Button11.onAction() {
RiotGamesys_Button11.active = false;
player.nick = RiotGamesys_TextEdit2.text;
RiotGamesys_Button11.active = true;
}
}

Reply With Quote