Gamestudio Links
Zorro Links
Newest Posts
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 1,333 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
LucasJoshua, Baklazhan, Hanky27, firatv, wandaluciaia
19053 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Illogical error #125311
04/20/07 17:33
04/20/07 17:33
Joined: Sep 2006
Posts: 148
Ireng Offline OP
Member
Ireng  Offline OP
Member

Joined: Sep 2006
Posts: 148
Parameter unknown _arg1?
I have nothing in my entire code that even resembles that!


"When the battlefield is under total control, war becomes routine." Old Snake
Re: Illogical error [Re: Ireng] #125312
04/20/07 17:43
04/20/07 17:43
Joined: Oct 2003
Posts: 702
Z
zazang Offline
User
zazang  Offline
User
Z

Joined: Oct 2003
Posts: 702
it it in lite-c or c-script ?


I like good 'views' because they have no 'strings' attached..
Re: Illogical error [Re: zazang] #125313
04/20/07 18:01
04/20/07 18:01
Joined: Sep 2006
Posts: 148
Ireng Offline OP
Member
Ireng  Offline OP
Member

Joined: Sep 2006
Posts: 148
C-Script, while doing a test run.
The same error shows up every two or three lines.


"When the battlefield is under total control, war becomes routine." Old Snake
Re: Illogical error [Re: Ireng] #125314
04/20/07 18:36
04/20/07 18:36
Joined: Mar 2006
Posts: 752
Portugal
demiGod Offline
User
demiGod  Offline
User

Joined: Mar 2006
Posts: 752
Portugal
There´s no illogical errors in programming, probably the error has to do with a function parameter bad defined or it doesnt exist. You must see the last code you changed before the error appeared.

Re: Illogical error [Re: demiGod] #125315
04/20/07 18:50
04/20/07 18:50
Joined: Aug 2005
Posts: 343
Germany
HPW Offline
Senior Member
HPW  Offline
Senior Member

Joined: Aug 2005
Posts: 343
Germany
This could happens if you use a parameter to your function as a panel, entity, string or something.
This isn't working...
Code:

function (p_entity)
{
p_entity.x = 10;
}
Code:

...but this should work...
Code:

function (e_entity)
{
you = e_entity;
your.x = 10;
}


...or this is also working...
Code:

entity* e_pointer;
function (e_entity)
{
e_pointer = e_entity;
e_pointer.x = 10;
}




Evil Blood (v. 0.52) RPG
Commport.de (Social Network Community)
Re: Illogical error [Re: HPW] #125316
04/20/07 18:59
04/20/07 18:59
Joined: Sep 2006
Posts: 148
Ireng Offline OP
Member
Ireng  Offline OP
Member

Joined: Sep 2006
Posts: 148
But I don't have anything called _arg1! I've tripled checkd using "Find in files"!


"When the battlefield is under total control, war becomes routine." Old Snake
Re: Illogical error [Re: Ireng] #125317
04/20/07 19:10
04/20/07 19:10
Joined: Sep 2006
Posts: 148
Ireng Offline OP
Member
Ireng  Offline OP
Member

Joined: Sep 2006
Posts: 148
Nevermind, I think it's an engine bug. I used one of my backup files and from there I'll start again.


"When the battlefield is under total control, war becomes routine." Old Snake
Re: Illogical error [Re: Ireng] #125318
04/20/07 19:28
04/20/07 19:28
Joined: Mar 2006
Posts: 752
Portugal
demiGod Offline
User
demiGod  Offline
User

Joined: Mar 2006
Posts: 752
Portugal
There is no engine bug, its a problem with a parameter in your code.

Also, the problem in your code doesnt have the name "_arg1", it just means that there is a problem with the first argument / parameter of one function. Too bad it does not tell you which one...

Re: Illogical error [Re: demiGod] #125319
04/20/07 20:55
04/20/07 20:55
Joined: Sep 2006
Posts: 148
Ireng Offline OP
Member
Ireng  Offline OP
Member

Joined: Sep 2006
Posts: 148
Ahhhhhh so that's what it meant.
Cool!
Thanks man.


"When the battlefield is under total control, war becomes routine." Old Snake

Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1