Thread: Gs3
View Single Post
  #22  
Old 04-13-2013, 01:14 AM
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
Also curious how this would look like in GS3.

Weapon: Example

PHP Code:
function onActionServerSide() {
  if (
params[0] == "hello") {
    
player.triggerclient("weapon"this.name"goodbye");
  }
}

//#CLIENTSIDE

function onCreated() {
  
triggerserver("gui"this.name"hello");
}

function 
onActionClientSide() {
  if (
params[0] == "goodbye") {
    
player.chat "*fistbump*";
  }

Also if there's no 'with' (I still think there should be) how would this work out:

Weapon: GUIExample

PHP Code:
//#CLIENTSIDE
function onCreated() {
  new 
GuiWindowCtrl("Example") {
    
profile GuiBlueButtonProfile;
    
width height 100;
    new 
GuiButtonCtrl("ButtonExample") {
      
profile GuiBlueButtonProfile;
      
width height 10;
    }
    new 
GuiButtonCtrl("ButtonExample2") {
      
profile GuiBlueButtonProfile;
      
width height 30;
    }  
  }

__________________
Quote:
Reply With Quote