Thread: Spells
View Single Post
  #21  
Old 07-01-2004, 12:08 PM
GoZelda GoZelda is offline
Mister 1,000,000
GoZelda's Avatar
Join Date: Jan 2003
Location: Brussels, capital of Europe.
Posts: 5,396
GoZelda will become famous soon enough
Send a message via AIM to GoZelda Send a message via MSN to GoZelda
Quote:
Originally Posted by Lance
It is worth noting that Xecutor is correct and expanding upon it to say:

= is your assignment operator
== is your comparison operator
Or a bit more simple, because Lance likes difficult words and terms which newbies might not understand...

= is 'becomes', so
NPC Code:

x=10


means that x becomes ten

== is 'the same' or 'equals' so
NPC Code:

if (x==10)


then x is equal to ten

Although you can use
NPC Code:

if (x=10)


because of compability with Java or something, it is strongly adviced not to.
__________________

Quote:
Originally Posted by Lance
stefan is satan
I am the best.
[URL removed]Music or aural pollution?
Reply With Quote