AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting (https://forums.alliedmods.net/forumdisplay.php?f=107)
-   -   enum: integer to mytype (https://forums.alliedmods.net/showthread.php?t=86609)

hnorgist 02-28-2009 05:16

enum: integer to mytype
 
my code:
Code:

...
// Identify type
enum IDType{ idtypeSteamid = 1, idtypeIp, idtypeName }
...
new IDType:g_MATCH_eIdentifyBy; // Identify entering players by ip/name/steamid/...
...
g_MATCH_eIdentifyBy = SQL_ReadResult( query, 9 );
...

Compilator says tag mismatch, which is obvious, because IDType is not integer. How can i make type conversion

Fyren 02-28-2009 05:19

Re: enum: integer to mytype
 
g_MATCH_eIdentifyBy = IDType:SQL_ReadResult(query, 9);

hnorgist 02-28-2009 05:24

Re: enum: integer to mytype
 
thx, works :)
it's just my first plugin, and I'm not the best friend with syntax yet.


All times are GMT -4. The time now is 23:36.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.