Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - aXXo

Pages: [1]
1
Argonath RPG server / Server IP: 37.187.229.80:5192
« on: October 02, 2013, 04:46:00 pm »
This is the current server IP:Port.

Server Info: Argonath RPG
Mode: ARPG v2.1
Address: 37.187.229.80:5192


This topic will be kept updated.

2
mIRC/pawn Scripting / [PAWN]"Warning:Tag mismatch" on float return
« on: March 18, 2010, 01:11:07 am »
Hi.
Apparantly, im getting a "Warning 213: Tag Mismatch" on the line where im returning a float value in a function.
Function body:
Code: [Select]
public GetDistance(Float:X1,Float:Y1,Float:Z1,Float:X2,Float:Y2,Float:Z2)
{
new Float:X = floatsub(X2,X1);
new Float:Y = floatsub(Y2,Y1);
new Float:Z = floatsub(Z2,Z1);
new Float:Dist = floatsqroot(floatadd(floatadd(floatpower(X,2),floatpower(Y,2)),floatpower(Z,2)));
return Dist;
}

The function is returning a random, wrong value......
Then, i replaced:
Code: [Select]
public GetDistance(Float:X1,Float:Y1,Float:Z1,Float:X2,Float:Y2,Float:Z2)
by

Code: [Select]
public Float:GetDistance(Float:X1,Float:Y1,Float:Z1,Float:X2,Float:Y2,Float:Z2)

The Warning changes to:
Code: [Select]
warning 208: function with tag result used before definition, forcing reparse
Now the function returns an accurate value....
But still...any method to remove the warning?

3
Support / Master Server down?
« on: January 02, 2009, 11:22:47 am »
Suddenly today the internet list is not working.  :( 
But the servers can be connected by IP:port from favs

Anybody got info about this thing?

Pages: [1]