Pie015 Posted September 10, 2010 Share Posted September 10, 2010 (edited) Guys, I have this problem, I want to create info icons and texts but I dont want to create multipile scripts so I added Player.Defined($PLAYER_CHAR) But it doesent WORK! [EDIT* I read james reply, So I created two non-pickable pickups -Evil Grin- and when you try to pick them up it will come up with text saying: YOUR GAY. BUT I put a pickup in CJ's house and a pickup outside's cj's house (:2 is the outside one) BUT to see the text i have to go insides the house, look at the text their and then i can look at the text on the outside pickup BUT i want is that I can go check the text anytime without going into the house and out // This file was decompiled using sascm.ini published by Seemann (http://sannybuilder.com/files/SASCM.rar) on 13.10.2007{$VERSION 3.1.0027}{$CLEO .cs}//-------------MAIN---------------thread 'THEEXIT' 0A95: enable_thread_saving [email protected] = Pickup.Create(1239, 23, 2497.75, -1694.49, 1014.74)[email protected] = Pickup.Create(1239, 23, 2533.2212, -1664.4788, 15.1665):THEEXIT_38wait 0 if and Player.Defined($PLAYER_CHAR) not Actor.Driving($PLAYER_ACTOR)else_jump @THEEXIT_40 if00FE: actor $PLAYER_ACTOR sphere 0 in_sphere 2497.75 -1694.49 1014.74 radius 1.0 1.0 1.0 jf @THEEXIT_38 00BA: show_text_styled FXT 'BUSTW' time 3000 style 6:THEEXIT_40wait 0if and Player.Defined($PLAYER_CHAR) not Actor.Driving($PLAYER_ACTOR)else_jump @THEEXIT_38if00FE: actor $PLAYER_ACTOR sphere 0 in_sphere 2533.2212 -1664.4788 15.1665 radius 1.0 1.0 1.0jf @THEEXIT_4000BA: show_text_styled FXT 'LEMAN' time 3000 style 6jump @THEEXIT_38 Edited September 11, 2010 by Pie015 Link to comment Share on other sites More sharing options...
james227uk Posted September 10, 2010 Share Posted September 10, 2010 doesnt WORK -Insert other rage here - Doesn't tell us anything. What happens Link to comment Share on other sites More sharing options...
BnB Posted September 11, 2010 Share Posted September 11, 2010 {$CLEO .cs}//-------------MAIN---------------thread 'THEEXIT'0A95: [email protected] = Pickup.Create(1239, 23, 2497.75, -1694.49, 1014.74)[email protected] = Pickup.Create(1239, 23, 2533.2212, -1664.4788, 15.1665):THEEXIT_38wait 0ifPlayer.Defined($PLAYER_CHAR)jf @THEEXTT_38if not Actor.Driving($PLAYER_ACTOR)else_jump @THEEXIT_40if00FE: actor $PLAYER_ACTOR sphere 0 in_sphere 2497.75 -1694.49 1014.74 radius 1.0 1.0 1.0jf @THEEXIT_3800BA: show_text_styled FXT 'BUSTW' time 3000 style 6:THEEXIT_40wait 0if and Player.Defined($PLAYER_CHAR) not Actor.Driving($PLAYER_ACTOR)else_jump @THEEXIT_38if00FE: actor $PLAYER_ACTOR sphere 0 in_sphere 2533.2212 -1664.4788 15.1665 radius 1.0 1.0 1.0jf @THEEXIT_4000BA: show_text_styled FXT 'LEMAN' time 3000 style 6jump @THEEXIT_38 Link to comment Share on other sites More sharing options...
Pie015 Posted September 11, 2010 Author Share Posted September 11, 2010 (edited) {$CLEO .cs}//-------------MAIN---------------thread 'THEEXIT'0A95: [email protected] = Pickup.Create(1239, 23, 2497.75, -1694.49, 1014.74)[email protected] = Pickup.Create(1239, 23, 2533.2212, -1664.4788, 15.1665):THEEXIT_38wait 0ifPlayer.Defined($PLAYER_CHAR)jf @THEEXTT_38if not Actor.Driving($PLAYER_ACTOR)else_jump @THEEXIT_40if00FE: actor $PLAYER_ACTOR sphere 0 in_sphere 2497.75 -1694.49 1014.74 radius 1.0 1.0 1.0jf @THEEXIT_3800BA: show_text_styled FXT 'BUSTW' time 3000 style 6:THEEXIT_40wait 0if and Player.Defined($PLAYER_CHAR) not Actor.Driving($PLAYER_ACTOR)else_jump @THEEXIT_38if00FE: actor $PLAYER_ACTOR sphere 0 in_sphere 2533.2212 -1664.4788 15.1665 radius 1.0 1.0 1.0jf @THEEXIT_4000BA: show_text_styled FXT 'LEMAN' time 3000 style 6jump @THEEXIT_38 [EDIT* It still doesen't work! I start the game, go to the outside pickup but no text! So I go into the johnson house and go to the pickup and text appears then i go outside and go to the outside pickup and text appears! But i dont want to go into the johnson house over and over. -__- -DINOSAUR ROAR- Edited September 11, 2010 by Pie015 Link to comment Share on other sites More sharing options...
Jerry123 Posted September 11, 2010 Share Posted September 11, 2010 This works by me {$CLEO .cs}//-------------MAIN---------------thread 'THEEXIT'[email protected] = Pickup.Create(1239, 23, 2497.75, -1694.49, 1014.74)[email protected] = Pickup.Create(1239, 23, 2533.2212, -1664.4788, 15.1665)while true:THEEXIT_38wait 0if andPlayer.Defined($PLAYER_CHAR)00FF: actor $PLAYER_ACTOR sphere 0 in_sphere 2497.75 -1694.49 1014.74 radius 1.0 1.0 2.0 on_foot jf @THEEXIT_400ACF: show_formatted_styled_text "YOU ARE GAY" time 2000 style 6 :THEEXIT_40if and Player.Defined($PLAYER_CHAR) not Actor.Driving($PLAYER_ACTOR)00FE: actor $PLAYER_ACTOR sphere 0 in_sphere 2533.2212 -1664.4788 15.1665 radius 1.0 1.0 1.0jf @THEEXIT_380ACF: show_formatted_styled_text "YOU ARE GAY" time 2000 style 6 end Link to comment Share on other sites More sharing options...