CLEO Help 3D Text

CLEO related
Status
Not open for further replies.

KamikazeSripterul

Well-known member
Joined
Jun 30, 2019
Messages
353
Reaction score
23
So on the server that i play there is this mission called Wang Cars Dealership. On the wall there are the names of 6 cars (like so ). I have tried both of these ( http://ugbase.eu/index.php?threads/textdraw-or-3dtextlabel-finder.17396/ ) ( http://ugbase.eu/index.php?threads/txd-finder-not-work.18719/ ) however i still can't manage to get the names of these cars. The cars are always random. What i want to do is to get those cars and put each name as a list item in a dialog. Can anyone help?
 

KamikazeSripterul

Well-known member
Joined
Jun 30, 2019
Messages
353
Reaction score
23
HostName: blue.bugged.ro
Address: blue.bugged.ro:7777
Players: 980 / 1000
Ping: 74
Mode: RPG Romania 4.01.106
Language: RO/EN

If you type /gps > Wang Cars Dealership and just get a bike and go there from spawn or use /service taxi and ask to go 'Wang'.
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,117
Solutions
5
Reaction score
882
Location
Lithuania
PHP:
{$CLEO .cs}

0000:


REPEAT
   WAIT 0
UNTIL 0AFA:  SAMP_IS_READY

WHILE TRUE
   WAIT 0
if
0B61:  samp is_local_player_spawned
then
    for 1@ = 0 to 2304
        if 0C5D: samp textdraw 1@ is_exists
        then
            alloc 2@ = 1024
            0C5A: samp textdraw 1@ get_string_to 2@
            chatmsg "%s" -1 2@
            free 2@
        end
    end
end

end
 

KamikazeSripterul

Well-known member
Joined
Jun 30, 2019
Messages
353
Reaction score
23
PHP:
{$CLEO .cs}

0000:


REPEAT
   WAIT 0
UNTIL 0AFA:  SAMP_IS_READY

WHILE TRUE
   WAIT 0
if
0B61:  samp is_local_player_spawned
then
    for 1@ = 0 to 2304
        if 0C5D: samp textdraw 1@ is_exists
        then
            alloc 2@ = 1024
            0C5A: samp textdraw 1@ get_string_to 2@
            chatmsg "%s" -1 2@
            free 2@
        end
    end
end

end
It doesn't do what i want it to do. It isn't a textdraw on my screen, it's like a... it's like one of those texts put by the server. I'm not sure how to explain but the code you gave me isn't helpful.
 
Status
Not open for further replies.
Top