Author Topic: Tutorial : Pascal Script  (Read 12633 times)

0 Members and 1 Guest are viewing this topic.

Offline Crome969Topic starter

  • Moderator
  • *
  • *****
  • Posts: 2098
  • Activity:
    0%
  • Reputation Power: 25
  • Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.
  • Gender: Male
  • UO Enthusiast
  • Respect: +211
  • Referrals: 10
    • View Profile
    • ScriptSDK
Tutorial : Pascal Script
« on: January 20, 2012, 01:26:16 PM »
0
« Last Edit: January 21, 2012, 12:22:01 AM by Crome969 »

Offline gimlet

  • Very Super Secret
  • Global Moderator
  • *
  • *
  • Posts: 6191
  • Activity:
    3%
  • Reputation Power: 71
  • gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!
  • Gender: Male
  • Respect: +273
  • Referrals: 3
    • View Profile
Re: Tutorial : Pascal Script
« Reply #1 on: January 20, 2012, 02:56:59 PM »
0
end. or end;     ?

Offline camotbik

  • Sr. Member
  • *
  • Posts: 349
  • Activity:
    0%
  • Reputation Power: 3
  • camotbik has no influence.
  • Gender: Male
  • Hello! I'm a UO addict.
  • Respect: +38
  • Referrals: 0
    • View Profile
Re: Tutorial : Pascal Script
« Reply #2 on: January 20, 2012, 03:30:42 PM »
0
end. is in the ending of a script, end; is in ending of a sub/function/block whatever you call it
What you witness -- is whatver..
uogamers hybrid.

Offline gimlet

  • Very Super Secret
  • Global Moderator
  • *
  • *
  • Posts: 6191
  • Activity:
    3%
  • Reputation Power: 71
  • gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!
  • Gender: Male
  • Respect: +273
  • Referrals: 3
    • View Profile
Re: Tutorial : Pascal Script
« Reply #3 on: January 20, 2012, 06:47:08 PM »
0
ah ic thanks

Offline Alpha

  • Hero Member
  • *
  • Posts: 583
  • Activity:
    0%
  • Reputation Power: 10
  • Alpha barely matters.Alpha barely matters.
  • Respect: +44
  • Referrals: 0
    • View Profile
Re: Tutorial : Pascal Script
« Reply #4 on: October 27, 2012, 11:34:56 AM »
0
program Say;
 const
  Hello = 'Hello';
 var
   World: String;
 Begin
     World: = 'Ultima';                     \\ RED Text should be :=    No space..
     UOSay (Hello + '' + World);
 End.

Working through stuff slowly but was like hmm... what am I doing wrong lol.

Tags: