Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Bug or not? (https://forums.graalonline.com/forums/showthread.php?t=74483)

Deadly_Killer 06-09-2007 07:22 PM

Bug or not?
 
PHP Code:

temp.test1 = {"Hello""How""Are""You", {"On""This""Fine""Day"}};
temp.test2 = {"Hello""How""Are""You", {"On""This""Fine""Day"}};

if (
temp.test1 == temp.test2) echo("MATCH"); 

doesn't work?

Skyld 06-09-2007 09:46 PM

Graal's comparison operator doesn't really compare the structure of an array like that; if you want to compare two arrays, convert them to strings first using the magic @ operator:
PHP Code:

if (@temp.test1 == @temp.test2)
{
  echo(
"MATCH");




All times are GMT +2. The time now is 08:27 AM.

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