Graal Forums  

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

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 07-05-2011, 08:32 AM
Twilikari Twilikari is offline
Registered User
Twilikari's Avatar
Join Date: Nov 2010
Location: America
Posts: 86
Twilikari is on a distinguished road
Calculator GUI Help

I was practicing my scriting, and I somewhat succesfully FIXED a calculator script. Too some of you, it may look veryyyy familiar. But I wanted to take it one step further. i wanted to make into a fully operational calculator GUI. I've never even attempted to make a GUI however, and I am completely lost. Any help is greatly appreciated!

I'm not looking for someone to do it for me, more of guide me. I want buttons for numbers in the GUI, and some kind of output for the answer.

PHP Code:
function onCreated() {
  
temp.2;
  
temp.1;
  
temp.3;
  
temp.onAdd(temp.atemp.b);
  
onResult(temp.a);  
  
temp.onSubtract(temp.atemp.c);
  
onResult(temp.a);  
  
temp.onDivide(temp.btemp.a);
  
onResult(temp.a);  
  
temp.onMultiply(temp.1temp.c);
  
onResult(temp.a);  
}

function 
onResult(temp.result) {
  echo(
"Result: " temp.result);
}

function 
onAdd(ab) {
  
a+b;
  return 
a;
}

function 
onSubtract(ab) {
  
b;
  return 
a;
}

function 
onDivide(ab) {  
  if (
== 0) {
    
"Error: Can't divide by 0!";
  } 
  if (
!= 0) {
    
;
  }  
  return 
a;
}

function 
onMultiply(ab) {
  
b;
  return 
a;

Thank's for the help, in advance! ^~^
Reply With Quote
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 01:02 PM.


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