Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 04-20-2011, 07:41 PM
Astram Astram is offline
Era iPhone PR
Astram's Avatar
Join Date: Aug 2010
Posts: 324
Astram can only hope to improve
Send a message via AIM to Astram
Hat System Help

PHP Code:
//#CLIENTSIDE
function onKeyPressed(code, key, scancode) {
if (
key == clientr.hatkey)
  {
  new 
GuiWindowCtrl("Hats_Window1") {
    
profile = GuiBlueWindowProfile;
    
clientrelative = true;
    
clientextent = "188,174";

    
canmove = true;
    
canresize = false;
    
closequery = false;
    
destroyonhide = false;
    
text = "Hats";
    
x = 568;
    
y = 207;

    new 
GuiScrollCtrl("Hats_TextList1_Scroll") {
      
profile = GuiBlueScrollProfile;
      
height = 132;
      
hscrollbar = "alwaysOff";
      
vscrollbar = "dynamic";
      
width = 152;
      
x = 16;

      new 
GuiTextListCtrl("Hats_TextList1") {
        
profile = GuiBlueTextListProfile;
        
height = 32;
        
horizsizing = "width";
        
width = 148;
        
clearrows();
        for (
temp.i=1; temp.i <= clientr.hatsize; temp.i++)
          {
        
addrow(0,clientr.hat(@ temp.i));
        }
       }
       
Hats_Window1.show();
    }
    new 
GuiButtonCtrl("Hats_Button1") {
      
profile = GuiBlueButtonProfile;
      
text = "Equip Hat";
      
width = 80;
      
x = 53;
      
y = 138;
    }
    
Hats_Window1.show();
  }
  }
}
function 
Hats_Button1.onAction() {
temp.text = Hats_TextList1.getSelectedText();
if (
temp.text != player.attr[1])
{
  
player.attr[1] = temp.text;
  
client.message.add("Equiped "@temp.text);
  }
  else
  {
  
player.attr[1] = "no-hat.png";
  
client.message.add("Took Off My Hat");
  }
  } 
Lets say my clientr.hatsize = 5;
It displays the 5 hats you have. Yet it says 0, I belive there might be a problem right here ++ addrow(0,clientr.hat(@ temp.i));
Because there are flags clientr.hat1
clientr.hat2....
Yeah so I need help with fixing that
__________________
-Toad
The worlds biggest Toad fan...
Era iPhone FTW!


Reply With Quote
  #2  
Old 04-20-2011, 07:44 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Should be
PHP Code:
addrow(i, clientr.("hat" @ i)); 
instead.
Reply With Quote
  #3  
Old 04-25-2011, 03:25 PM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
a tips, instead of recreating the gui each time you open the gui, hide/show the window, and create the gui onCreated.

PHP Code:
windowobj.visible = true/false 
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #4  
Old 04-25-2011, 03:50 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
I believe I've posted this before but at least make an effort to style your code properly. You can even have this site do it for you: http://jsbeautifier.org/
__________________
Quote:
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 09:40 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.