Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
3 registered members (NewbieZorro, TipmyPip, 1 invisible), 19,045 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 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 | 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