View Single Post
  #8  
Old 08-01-2014, 03:09 PM
BasketCase209's Avatar
BasketCase209
Fire Beetle
 
Join Date: Feb 2006
Location: California
Posts: 28
Default

You're right, Kingly. I think I got it going now.
I think the error was being caused by the usage not being set up correctly.
I had it as:
Quote:
quest::say("Welcome back, $name. Your current balance is $qglobals{"BlackJackTab"} platinum. If you'd like to $cashout please tell me.");
But when I copied the working "hail" and put my own info in I noticed it had to be formatted as such:
Quote:
quest::say("Welcome back, $name. Your current balance is " . $qglobals{"BlackJackTab"} . " platinum. If you'd like to $cashout please tell me.");
I also didn't know about the #logs command. I'm definitely going to be using this.

I REALLY appreciate the help all.
Reply With Quote